(elements: Array<T>)
| 284 | // HELPERS |
| 285 | array_of<T>(x: number, gen: ()=>T): T[]; |
| 286 | random_element<T>(elements: Array<T>): T; |
| 287 | random_value<K extends string | number | symbol, V>(obj: { [key in K]: V }): V; |
| 288 | random_key<K extends string | number | symbol, V>(obj: { [key in K]: V }): K; |
| 289 | populate(str: string): string; |
no outgoing calls
no test coverage detected