UNPKG

@omnia/fx

Version:

Provide Omnia Fx typings and tooling for clientside Omnia development.

24 lines (23 loc) 948 B
import { IWebComponentInstance } from "../../../.."; import { IBooleanFieldEdit } from "./IBooleanFieldEdit"; import { EnterprisePropertyDefinition, EnterprisePropertyBooleanItemSettings } from "../../../../models"; import { VueComponentBase } from "../../../VueComponentBase"; import { MultilingualStore } from "../../../../stores"; export declare class BooleanFieldEdit extends VueComponentBase implements IWebComponentInstance, IBooleanFieldEdit { valueBind: { [propertyInternalName: string]: boolean; }; onValueChanged: (value: boolean) => void; disabled: boolean; property: EnterprisePropertyDefinition; dark?: boolean; settings: EnterprisePropertyBooleanItemSettings; indeterminate?: boolean; multilingualStore: MultilingualStore; isRequired: boolean; mounted(): void; created(): void; beforeDestroy(): void; private onCheckBoxChange; render(): VueTsxSupport.JSX.Element; }