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.
27 lines
937 B
27 lines
937 B
import { AppLookupParams } from '../api/IosApi';
|
|
import { Context, IView } from '../context';
|
|
export declare class SelectPlatform implements IView {
|
|
open(ctx: Context): Promise<IView | null>;
|
|
}
|
|
export declare class SelectIosExperience implements IView {
|
|
open(ctx: Context): Promise<IView | null>;
|
|
getAppLookupParamsFromContext(ctx: Context): AppLookupParams;
|
|
handleAction(ctx: Context, accountName: string, action: string): IView | null;
|
|
}
|
|
export declare class SelectAndroidExperience implements IView {
|
|
private askAboutProjectMode;
|
|
open(ctx: Context): Promise<IView | null>;
|
|
}
|
|
export declare class QuitError extends Error {
|
|
constructor();
|
|
}
|
|
export interface IQuit {
|
|
runAsync(mainpage: IView): Promise<IView>;
|
|
}
|
|
export declare class DoQuit implements IQuit {
|
|
runAsync(mainpage: IView): Promise<IView>;
|
|
}
|
|
export declare class AskQuit implements IQuit {
|
|
runAsync(mainpage: IView): Promise<IView>;
|
|
}
|