UNPKG

147 BTypeScriptView Raw
1/**
2 * Returns a Date.now() like function that's in sync with the seed value.
3 */
4declare function seeded(seed: number): number;
5
6export = seeded;