@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
21 lines (20 loc) • 563 B
TypeScript
import { TsxAllowUnknowProperties } from "../";
import { JourneyInstance, Blade } from "../../models";
export interface IJourney {
onInstanceCreated?: (instance: JourneyInstance) => void;
onInstanceClosed?: () => void;
blades: Array<Blade>;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface ElementAttributesProperty {
}
interface IntrinsicElements {
"omfx-journey": TsxAllowUnknowProperties<IJourney>;
}
}
}