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.

8 lines (7 loc) 197 B
interface IValidateOptions { strict?: boolean; details?: boolean; silent?: boolean; } export declare const validateFile: (file: string, options?: IValidateOptions) => never; export {};