ohctechv3/.svn/pristine/69/699cdf85199641b32605cf49eb1ce7276cedcc80.svn-base

5 lines
445 B
Plaintext
Raw Normal View History

2024-10-28 15:03:36 +05:30
import { ListAction, ListActionContext } from '../useList';
import { ActionWithContext } from '../utils/useControllableReducer.types';
import { SelectAction, SelectInternalState } from './useSelect.types';
export declare function selectReducer<OptionValue>(state: SelectInternalState<OptionValue>, action: ActionWithContext<ListAction<OptionValue> | SelectAction<OptionValue>, ListActionContext<OptionValue>>): SelectInternalState<OptionValue>;