@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
24 lines (23 loc) • 898 B
TypeScript
import { VueComponentBase } from "../..";
import { AppInstance } from "../../../models";
import { AppStore } from "../../../stores";
import { IAppInstanceProgressBlade } from "./IAppInstanceProgressBlade";
import { AppInstanceProgressActions } from "../Enums";
export declare class AppInstanceProgressBladeComponent extends VueComponentBase implements IAppInstanceProgressBlade {
appBarTitle: string;
appInstance: AppInstance;
handleAppActionError: () => void;
handleAppActionCompleted: () => void;
onCloseFunc: () => void;
action?: AppInstanceProgressActions;
deleteAppWithErrorStatusAfterCreating: boolean;
private omniaTheming;
appStore: AppStore;
private omniaUxLoc;
isSaving: boolean;
isDisplayEditEnterprisePropertiesBlade: boolean;
errorMessage: string;
created(): void;
mounted(): void;
render(): VueTsxSupport.JSX.Element;
}