IOweb/node_modules/astro/dist/assets/fonts/infra/xxhash-hasher.d.ts
2026-07-03 15:07:38 -05:00

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