UNPKG

fruitsconfits

Version:

FruitsConfits - A well typed and sugared parser combinator framework for TypeScript/JavaScript.

4 lines (3 loc) 183 B
declare type AstValuesT = number | string | boolean | BigInt | null | Record<string, unknown> | any[] | undefined; export declare function parse(s: string): AstValuesT; export {};