@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
19 lines (18 loc) • 576 B
TypeScript
import { AppInstanceRollupBlockSettings, GuidValue } from "@omnia/fx-models";
import { TsxAllowUnknowProperties } from "../../..";
export interface IAppInstanceRollupSettings {
componentId: GuidValue;
appDefinitionId: GuidValue;
settings: AppInstanceRollupBlockSettings;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface IntrinsicElements {
"omfx-app-instance-rollup-settings": TsxAllowUnknowProperties<IAppInstanceRollupSettings>;
}
}
}