@meleon/uni-ui
Version:
A uniapp components library written in vue3 and typescript
11 lines (10 loc) • 393 B
TypeScript
import type { InjectionKey, ComponentInternalInstance } from 'vue';
import type StateWatcher from '../ml-table-column/store';
export interface TableContext {
tableId: string;
storeEntity: StateWatcher;
table: ComponentInternalInstance | null;
getColumnId: () => string;
}
declare const MlTableInjectionKey: InjectionKey<TableContext>;
export { MlTableInjectionKey };