import { SharePointField } from "./SharePointField"; import { PropertyIndexedType } from "@omnia/fx-models"; export interface SharePointDateTimeField extends SharePointField { type: PropertyIndexedType.DateTime; value: Date; isDateOnly: boolean; keepUtc: boolean; }