UNPKG

@grnsft/if

Version:

Impact Framework

11 lines (10 loc) 238 B
/** * Checks if either `manifest` or `directory` command is provided. */ export declare const parseIfCheckArgs: () => Promise<{ manifest: string; directory?: undefined; } | { directory: string; manifest?: undefined; }>;