@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
26 lines (25 loc) • 720 B
TypeScript
import { TsxAllowUnknowProperties } from "../TsxAllowUnknowProperties";
import { NumericIndicatorStyles } from "../models";
import { IIcon } from "@omnia/fx-models";
export interface INumericIndicatorComponent {
[name: string]: any;
clickCallback: () => void;
valueBind: number;
label: string;
style?: typeof NumericIndicatorStyles;
height?: number;
description?: string;
color?: string;
icon?: IIcon;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface IntrinsicElements {
"omfx-numeric-indicator": TsxAllowUnknowProperties<INumericIndicatorComponent>;
}
}
}