j2s/src/main/resources/lib/globals/json.d.ts
TopchetoEU b1e0db627c
Some checks failed
tagged-release / Tagged Release (push) Failing after 3m24s
fix typings so they are usable for building the project itself
2025-01-06 14:02:07 +02:00

5 lines
75 B
TypeScript

interface JSON {
stringify(val: any): string;
parse(val: string): any;
}