@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
15 lines (14 loc) • 386 B
TypeScript
import { FeatureComponentProps } from "../../features";
export interface ITestFeaturesComponent extends FeatureComponentProps {
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface IntrinsicElements {
"omfx-test-features-component": ITestFeaturesComponent;
}
}
}