You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
735 B

import type { Command } from 'commander';
export declare function applyAsyncActionProjectDir<Options = Record<string, any>>(command: Command, resolve: () => Promise<{
actionAsync: (projectRoot: string, options: Options) => Promise<unknown>;
}>, settings?: {
checkConfig?: boolean;
skipSDKVersionRequirement?: true;
}): void;
export declare function applyAsyncAction<Args = string[], Options = Record<string, any>>(command: Command, resolve: () => Promise<{
actionAsync: (args: Args, options: Options) => Promise<unknown>;
}>): void;
export declare function applyAnyAsyncAction<Options = Record<string, any>>(command: Command, resolve: () => Promise<{
actionAsync: (options: Options) => Promise<unknown>;
}>): void;