Files
talk-pro/node_modules/astro/dist/assets/fonts/infra/xxhash-hasher.d.ts
2026-05-12 16:16:03 +08:00

8 lines
271 B
TypeScript

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;
}