1234567891011121314151617181920 |
- declare function randomStr(): string;
- declare function formatParams(queryKey: string, value: any): string[];
- declare function flatten(array: string[] | (string[])[]): string[];
- export { formatParams, flatten, randomStr };
|