Spaces:
Runtime error
Runtime error
File size: 374 Bytes
23ac194 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
type FastQueryString = {
stringify(value: Record<string, any>): string;
parse(value: string): Record<string, any>;
};
declare namespace fastQueryString {
export function stringify(value: Record<string, any>): string;
export function parse(value: string): Record<string, any>;
const fqs: FastQueryString;
export { fqs as default };
}
export = fastQueryString;
|