UNPKG

code-monkey-ui

Version:

A Component Library for Vue 3

11 lines (10 loc) 398 B
import type { InjectionKey, Ref } from 'vue'; import type { UseNamespaceReturn } from 'code-monkey-ui/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>;