UNPKG

467 BTypeScriptView Raw
1import { TermStore } from './ITermStore';
2export declare module TermPickerForm {
3 interface ITermPickerForm {
4 termSet?: TermStore.ITermSet;
5 terms?: Array<TermStore.ITerm>;
6 }
7 interface ITermPickerFormOption {
8 termSetId?: string;
9 isEnterpriseKeyword?: boolean;
10 selectedTerms?: Array<TermStore.ITerm>;
11 isMulti?: boolean;
12 okHandler: (selectedTerms: Array<TermStore.ITerm>) => void;
13 }
14}