create-snippet
Version:
npx tool for generating code snippets
20 lines (19 loc) • 504 B
TypeScript
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;
}[];
}