UNPKG

vuoto

Version:

Modern whitespace normalizer CLI with enhanced output and developer experience - cut the noise, clean the void

14 lines 339 B
/** * Options for initializing configuration. * @property silent Suppress all output. * @property verbose Show detailed information. * @example * ```ts * await initConfig({ silent: false }); * ``` */ export type InitConfigOptions = { silent?: boolean; verbose?: boolean; }; //# sourceMappingURL=init-config-options.d.ts.map