Files
talk-pro/node_modules/astro/dist/assets/fonts/infra/xxhash-hasher.d.ts

8 lines
271 B
TypeScript
Raw Normal View History

import type { Hasher } from '../definitions.js';
export declare class XxhashHasher implements Hasher {
hashString: (input: string) => string;
private constructor();
static create(): Promise<XxhashHasher>;
hashObject(input: Record<string, any>): string;
}