JSON
Import:
import { JSON } from "@tsonic/js/index.js";
Example:
import { console, JSON } from "@tsonic/js/index.js";
export function main(): void {
const value = JSON.parse<{ x: number }>('{"x": 1}');
console.log(value.x);
console.log(JSON.stringify(value));
}
API Reference
JSON
export declare const JSON: {
parse<T>(text: string): T;
stringify(value: unknown): string;
};