UNPKG

@decaf-ts/utils

Version:

module management utils for decaf-ts

23 lines (22 loc) 610 B
import { LoggingConfig } from "@decaf-ts/logging"; import { Command } from "../command.d.mts"; import { DefaultCommandValues } from "../constants.d.mts"; 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 {};