UNPKG

@arco-design/web-vue

Version:

Arco Design Vue 2.0: A Vue.js 3 UI Library

9 lines (8 loc) 306 B
import { InjectionKey, Slots } from 'vue'; export interface TransferContext { selected: string[]; slots: Slots; moveTo: (values: string[], target: 'target' | 'source') => void; onSelect: (value: string[]) => void; } export declare const transferInjectionKey: InjectionKey<TransferContext>;