UNPKG

poku

Version:

🐷 Poku makes testing easy for Node.js, Bun, Deno, and you at the same time.

10 lines (9 loc) 230 B
/** * Adapted from https://github.com/wellwelwel/jsonc.min */ declare class JsoncProcessor { toJSON(content: string): string; parse<T = unknown>(text: string): T; } export declare const JSONC: JsoncProcessor; export {};