UNPKG

yini-cli

Version:

CLI for parsing and validating YINI config files: type-safe values, nested sections, comments, minimal syntax noise, and optional strict mode.

9 lines (8 loc) 193 B
export interface ICLIParseOptions { strict?: boolean; pretty?: boolean; log?: boolean; json?: boolean; output?: string; } export type TBailSensitivity = 'auto' | 0 | 1 | 2;