@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
29 lines (28 loc) • 809 B
TypeScript
import { TsxAllowUnknowProperties } from "../";
import { SpacingSettings } from "../../models";
export interface IPaddingPickerProperties {
individualSelection?: boolean;
disableLeft?: boolean;
disableRight?: boolean;
disableTop?: boolean;
disableBottom?: boolean;
dark?: boolean;
}
export interface ISpacingPicker extends IPaddingPickerProperties {
valueBind: SpacingSettings;
onValueChanged?: (model: SpacingSettings) => void;
[name: string]: any;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface ElementAttributesProperty {
}
interface IntrinsicElements {
"omfx-spacing-picker": TsxAllowUnknowProperties<ISpacingPicker>;
}
}
}