bpms_site/.svn/pristine/55/55366ed4511e6cab128dc4c55809aad196d007a3.svn-base
2025-11-02 16:38:49 +03:30

6 lines
243 B
Plaintext

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