UNPKG

ini-simple-parser

Version:
13 lines (12 loc) 326 B
type Options = { inferBooleans?: boolean; inferNulls?: boolean; inferNumbers?: boolean; inferStrings?: boolean; inlineComments?: boolean; }; type Primitive = null | boolean | number | string; type Results = Partial<{ [key: string]: Results | Primitive; }>; export type { Options, Primitive, Results };