| 2 | type PRNG = () => number; |
| 3 | |
| 4 | interface SeedRandomOptions { |
| 5 | entropy?: boolean; |
| 6 | state?: boolean; |
| 7 | pass?: PRNG; |
| 8 | global?: boolean; |
| 9 | } |
| 10 | |
| 11 | function seedrandom(seed?: string | number, options?: SeedRandomOptions): PRNG; |
| 12 |
nothing calls this directly
no outgoing calls
no test coverage detected