systelab-components
Version:
systelab-components is a set of components that use wide accepted and adopted standard technologies like Angular and Bootstrap, as well as other popular libraries. Please read the ATTRIBUTION.md file for a complete list of dependencies.
12 lines (11 loc) • 440 B
TypeScript
import { AbstractSearcher } from './abstract-searcher';
import { SystelabModalContext } from '../modal/dialog/modal-context';
export declare class SearcherDialogParameters<T> extends SystelabModalContext {
valueToSearch: string;
searcher: AbstractSearcher<T>;
showCloseButton: boolean;
showSelectedRowsInSubmitButton: boolean;
isTeeSearcher: boolean;
debounceTime: number;
searchByStartWithAsDefault: boolean;
}