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