Files
dealplustech/dealplustech-astro/node_modules/astro/dist/assets/fonts/infra/xxhash-hasher.d.ts
2026-03-02 12:35:14 +07: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;
}