5 lines
110 B
TypeScript
Raw Normal View History

2024-01-09 05:30:48 +04:00
declare module 'fast-json-stable-stringify' {
function stringify(obj: any): string;
export = stringify;
}