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) 268 B
import { IGlobalOptions } from '../types.js'; export interface IParseCommandOptions extends IGlobalOptions { pretty?: boolean; json?: boolean; output?: string; } export declare const parseFile: (file: string, commandOptions: IParseCommandOptions) => void;