eas-cli
Version:
EAS command line tool
16 lines (15 loc) • 751 B
TypeScript
import EasCommand from '../../commandUtils/EasCommand';
export default class BranchRename extends EasCommand {
static description: string;
static flags: {
json: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
'non-interactive': import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
from: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>;
to: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>;
};
static contextDefinition: {
loggedIn: import("../../commandUtils/context/LoggedInContextField").default;
projectId: import("../../commandUtils/context/ProjectIdContextField").ProjectIdContextField;
};
runAsync(): Promise<void>;
}