@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
23 lines (22 loc) • 564 B
TypeScript
import { TsxAllowUnknowProperties } from "../TsxAllowUnknowProperties";
export interface IInputToken {
valueBind: string;
onValueChanged?: (model: string) => void;
label?: string;
filled?: boolean;
disabled?: boolean;
loading?: boolean;
class?: string[];
dark?: boolean;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface IntrinsicElements {
"omfx-input-token": TsxAllowUnknowProperties<IInputToken>;
}
}
}