eas-cli
Version:
EAS command line tool
15 lines (14 loc) • 487 B
TypeScript
import EasCommand from '../../commandUtils/EasCommand';
export default class Onboarding extends EasCommand {
static aliases: string[];
static description: string;
static flags: {};
static args: {
name: string;
}[];
static contextDefinition: {
analytics: import("../../commandUtils/context/AnalyticsContextField").default;
loggedIn: import("../../commandUtils/context/LoggedInContextField").default;
};
runAsync(): Promise<void>;
}