You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
396 B
10 lines
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>;
|
|
|