@bscotch/yy
Version:
Stringify, parse, read, and write GameMaker yy and yyp files.
6 lines • 320 B
TypeScript
/**
* @file Modified from public domain code: https://github.com/sidorares/json-bigint/blob/master/lib/parse.js
*/
import { Schema, z } from 'zod';
export declare function parseYy<T extends Schema | undefined>(source: string, schema?: T): T extends Schema ? z.infer<T> : unknown;
//# sourceMappingURL=Yy.parse.d.ts.map