@grnsft/if
Version:
Impact Framework
13 lines (12 loc) • 326 B
TypeScript
/**
* Checks if the `manifest` command is provided and it is valid manifest file.
*/
export declare const parseIfEnvArgs: () => Promise<{
manifest: string;
install: boolean | undefined;
cwd: boolean | undefined;
} | {
install: boolean | undefined;
cwd: boolean | undefined;
manifest?: undefined;
}>;