@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
19 lines (18 loc) • 700 B
TypeScript
import { TsxAllowUnknowProperties, MediaPickerProviderComponentProps } from "../../";
import { MediaPickerCentralImageLocationComponentProps } from "../../../models";
export interface ICentralImageProviderComponent extends MediaPickerProviderComponentProps, MediaPickerCentralImageLocationComponentProps {
[name: string]: any;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface ElementAttributesProperty {
}
interface IntrinsicElements {
"omfx-media-picker-central-image-location-provider": TsxAllowUnknowProperties<ICentralImageProviderComponent>;
}
}
}