import { SharePointField } from "./SharePointField"; import { Identity, PropertyIndexedType } from "@omnia/fx-models"; export interface SharePointPersonField extends SharePointField { type: PropertyIndexedType.Person; multiple: boolean; identities: Array; } export interface SharePointDisplayPersonField extends SharePointPersonField { userObj: string; }