UNPKG

element-plus

Version:

A Component Library for Vue 3

11 lines (10 loc) 396 B
import type { InjectionKey, Ref } from 'vue'; import type { UseNamespaceReturn } from 'element-plus/es/hooks'; import type { KeyType } from './types'; export declare type TableV2Context = { isScrolling: Ref<boolean>; hoveringRowKey: Ref<null | KeyType>; isResetting: Ref<boolean>; ns: UseNamespaceReturn; }; export declare const TableV2InjectionKey: InjectionKey<TableV2Context>;