@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
20 lines (19 loc) • 743 B
TypeScript
import { FeaturesLocalization, OmniaTheming, VueComponentBase } from "../..";
import { GuidValue } from "../../../models";
export interface IFeatureHomeBladeProps {
appInstanceId?: GuidValue;
handleClose: () => void;
handleFeatureAction: (action: string, featureId: GuidValue) => void;
targetResolverType: string;
}
export declare class FeatureHomeBlade extends VueComponentBase<IFeatureHomeBladeProps> {
appInstanceId?: GuidValue;
handleClose: () => void;
handleFeatureAction: (action: string, featureId: GuidValue) => void;
targetResolverType: string;
loc: FeaturesLocalization.locInterface;
omniaTheming: OmniaTheming;
private key;
created(): void;
render(): VueTsxSupport.JSX.Element;
}