UNPKG

multi-source-select

Version:

Multi-source select control

13 lines (12 loc) 394 B
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; }