UNPKG

@arco-design/web-vue

Version:

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

11 lines (10 loc) 359 B
import type { InjectionKey, Slots } from 'vue'; export interface CollapseContext { activeKeys: (string | number)[]; slots: Slots; showExpandIcon?: boolean; expandIconPosition: string; destroyOnHide: boolean; handleClick: (key: string | number, e: MouseEvent) => void; } export declare const collapseKey: InjectionKey<CollapseContext>;