UNPKG

ng2-qgrid

Version:
9 lines (7 loc) 518 B
import { SingleSelectionState } from './single.selection.state'; import { MultipleSelectionState } from './multiple.selection.state'; import { RangeSelectionState } from './range.selection.state'; import { Model } from '../../infrastructure/model'; import { SelectionService } from '../selection.service'; export declare function selectionStateFactory(model: Model, service: SelectionService): (model: Model, service: SelectionService) => SingleSelectionState | MultipleSelectionState | RangeSelectionState;