Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
13 lines
335 B
Text
13 lines
335 B
Text
declare const FNV_PRIMES: {
|
|
readonly 32: bigint;
|
|
readonly 64: bigint;
|
|
readonly 128: bigint;
|
|
readonly 256: bigint;
|
|
readonly 512: bigint;
|
|
readonly 1024: bigint;
|
|
};
|
|
export default function fnv1a(inputString: string, { size, seed, }?: {
|
|
size?: keyof typeof FNV_PRIMES;
|
|
seed?: number;
|
|
}): bigint;
|
|
export {};
|