UNPKG

@promptbook/vercel

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

14 lines (13 loc) 478 B
import type { number_seed } from '../../types/typeAliases'; /** * Generates random seed * * Note: `$` is used to indicate that this function is not a pure function - it is not deterministic * Warning: This function is NOT cryptographically secure (it uses Math.random internally) * * @private internal helper function */ export declare function $randomSeed(): number_seed; /** * TODO: [🤶] Maybe export through `@promptbook/utils` or `@promptbook/random` package */