5 lines
75 B
TypeScript
5 lines
75 B
TypeScript
interface JSON {
|
|
stringify(val: any): string;
|
|
parse(val: string): any;
|
|
}
|