eas-cli
Version:
EAS command line tool
19 lines (18 loc) • 611 B
TypeScript
import EasCommand from '../../commandUtils/EasCommand';
export declare class WorkflowCreate extends EasCommand {
static description: string;
static args: {
name: string;
description: string;
required: boolean;
}[];
static flags: {
'non-interactive': import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
};
static contextDefinition: {
projectDir: import("../../commandUtils/context/ProjectDirContextField").default;
};
runAsync(): Promise<void>;
private ensureWorkflowsDirectoryExistsAsync;
private createWorkflowFileAsync;
}