multi-source-select
Version:
Multi-source select control
13 lines (12 loc) • 394 B
TypeScript
import { Matcher } from '.';
export type FreTextFunc = 'Original' | 'Individual' | 'Combined';
export default interface Nemonic {
name: string;
requiredDataSources?: string[];
optionalDataSources?: string[];
noAndOr?: boolean;
noBrackets?: boolean;
allowFreeText?: boolean;
pasteFreeTextAction?: FreTextFunc;
validate?: (matchers: Matcher[]) => string | null;
}