UNPKG

create-snippet

Version:
20 lines (19 loc) 504 B
import { InterfaceArgv } from './argv.interface'; import { TypeArgv } from './argv.type'; export declare class ModuleArgv implements InterfaceArgv<TypeArgv> { private args; constructor(); format(name: string): { key: string | null; value: string | null; }; find(name: string): { key: string | null; value: string | null; }; getNotFormatted(): string[]; getFormatted(): { key: string | null; value: string | null; }[]; }