7 lines
264 B
TypeScript
7 lines
264 B
TypeScript
import { DefaultRow, Table } from "./table/defaults.js";
|
|
import { InjectionKey } from "vue";
|
|
|
|
//#region ../../packages/components/table/src/tokens.d.ts
|
|
declare const TABLE_INJECTION_KEY: InjectionKey<Table<DefaultRow>>;
|
|
//#endregion
|
|
export { TABLE_INJECTION_KEY }; |