import { SharePointField } from "./SharePointField"; import { GuidValue, PropertyIndexedType } from "@omnia/fx-models"; export interface SharePointTaxonomyField extends SharePointField { type: PropertyIndexedType.Taxonomy; multiple: boolean; termSetId: GuidValue; termIds: Array; parentInternalName?: string; limitLevel?: number; }