@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
23 lines (22 loc) • 629 B
TypeScript
import { TsxAllowUnknowProperties } from "../";
import { TimePeriodSettings } from "../../models";
export interface ITimePeriodPicker {
dark?: boolean;
disabled?: boolean;
hideDetails?: boolean;
valueBind: TimePeriodSettings;
onValueChanged: (model: TimePeriodSettings) => void;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface ElementAttributesProperty {
}
interface IntrinsicElements {
"omfx-time-period-picker": TsxAllowUnknowProperties<ITimePeriodPicker>;
}
}
}