import { SharePointField } from "./SharePointField"; import { PropertyIndexedType } from "@omnia/fx-models"; export interface SharePointBooleanField extends SharePointField { type: PropertyIndexedType.Boolean; value: boolean; }