tiny-bin
Version:
A library for building tiny and beautiful command line apps.
14 lines (13 loc) • 343 B
TypeScript
import Addon from './addon.js';
import type { ConfigOptions } from '../types.js';
declare class Config extends Addon {
name: string;
description: string;
package: string;
version: string;
colors: boolean;
autoExit: boolean;
print(): void;
update(options: Partial<ConfigOptions>): void;
}
export default Config;