UNPKG

255 BTypeScriptView Raw
1import { flags } from '@oclif/command';
2export interface Flags {
3 buildDir: string;
4 configDir: string;
5}
6export declare const FlagDefs: {
7 configDir: flags.IOptionFlag<string | undefined>;
8 buildDir: flags.IOptionFlag<string | undefined>;
9};