@decaf-ts/utils
Version:
module management utils for decaf-ts
23 lines (22 loc) • 610 B
text/typescript
import { LoggingConfig } from "@decaf-ts/logging";
import { Command } from "../command.d.cts";
import { DefaultCommandValues } from "../constants.d.cts";
declare const options: {
basePath: {
type: string;
default: string;
};
command: {
type: string;
default: undefined;
};
};
export declare class RunAllCommand extends Command<typeof options, void> {
constructor();
protected help(): void;
protected run(answers: LoggingConfig & typeof DefaultCommandValues & {
basePath: unknown;
command: unknown;
}): Promise<void>;
}
export {};