UNPKG

251 BTypeScriptView Raw
1/**
2 * A deterministic pseudo-random number generator.
3 * Pass in the same seed and get the same pseudorandom number.
4 * See: https://remotion.dev/docs/random
5 */
6export declare const random: (seed: number | string | null, dummy?: unknown) => number;