Auto-commit 2026-04-29 16:31

This commit is contained in:
2026-04-29 16:31:27 -04:00
parent e8687bb6b2
commit 0495ee5bd2
19691 changed files with 3272886 additions and 138 deletions

40
node_modules/farmhash-modern/lib/index.d.cts generated vendored Normal file
View File

@@ -0,0 +1,40 @@
/**
* Create a new farmhash based u32 for a string or an array of bytes.
* Fingerprint value should be portable and stable across library versions
* and platforms.
*/
export declare function fingerprint32(input: string | Uint8Array): number;
/**
* Create a new farmhash based u64 for a string or an array of bytes.
* Fingerprint value should be portable and stable across library versions
* and platforms.
*/
export declare function fingerprint64(input: string | Uint8Array): bigint;
/**
* Create a new farmhash based i64 for a string or an array of bytes.
* Fingerprint value should be portable and stable across library versions
* and platforms.
*
* This matches the format used by BigQuery's FARM_FINGERPRINT function.
*/
export declare function bigqueryFingerprint(input: string | Uint8Array): bigint;
/**
* Create a new farmhash based u32 for an array of bytes. Hash value may
* vary with library version.
*/
export declare function hash32(input: string | Uint8Array): number;
/**
* Create a new farmhash based u32 for an array of bytes with a given seed.
* Hash value may vary with library version.
*/
export declare function hash32WithSeed(input: string | Uint8Array, seed: number): number;
/**
* Create a new farmhash based u64 for an array of bytes. Hash value may
* vary with library version.
*/
export declare function hash64(input: string | Uint8Array): bigint;
/**
* Create a new farmhash based u64 for an array of bytes with a given seed.
* Hash value may vary with library version.
*/
export declare function hash64WithSeed(input: string | Uint8Array, seed: bigint): bigint;