UNPKG

@omnia/fx

Version:

Provide Omnia Fx typings and tooling for clientside Omnia development.

15 lines (14 loc) 598 B
import { VueComponentBase, VueComponentBaseProps } from "../.."; import { AppInstance } from "../../../models"; export declare const bladeIds: { progressBlade: string; propertyBlade: string; enterprisepropertiesBlade: string; }; export declare class BladeBase<Props = VueComponentBaseProps, EventsWithOn = {}, ScopedSlotArgs = {}> extends VueComponentBase<Props, EventsWithOn, ScopedSlotArgs> { errorMessage: string; isSaving: boolean; private appStore; constructor(); update(appInstance: AppInstance, callBack: (appInstance: AppInstance) => Promise<void>): void; }