bpms_site/.svn/pristine/14/142abd08bed0ecee78b318fe8a9036942ef36ed3.svn-base
2025-11-02 16:38:49 +03:30

6 lines
221 B
Plaintext

import { getValidatedArgs } from './get-validated-args';
export type CliCommand = (args: ReturnType<typeof getValidatedArgs>) => void;
export declare const commands: {
[command: string]: () => Promise<CliCommand>;
};