useKeyboard.d.ts 506 B

12345
  1. import type { Key } from '../../_util/type';
  2. import type { Ref, SetupContext } from 'vue';
  3. import type { DefaultOptionType, InternalFieldNames, SingleValueType } from '../Cascader';
  4. declare const _default: (context: SetupContext, options: Ref<DefaultOptionType[]>, fieldNames: Ref<InternalFieldNames>, activeValueCells: Ref<Key[]>, setActiveValueCells: (activeValueCells: Key[]) => void, onKeyBoardSelect: (valueCells: SingleValueType, option: DefaultOptionType) => void) => void;
  5. export default _default;