- Full-featured monitoring dashboard for local web apps - Real-time status tracking with uptime percentages - Visual sparklines for status history - Add/Edit/Delete apps dynamically - Categories and color coding - Auto-refresh every 30 seconds - API endpoints for apps and status management
14 lines
335 B
TypeScript
14 lines
335 B
TypeScript
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 {};
|