9 lines
244 B
TypeScript
9 lines
244 B
TypeScript
|
// src/types/vue3-tui-grid.d.ts
|
||
|
declare module 'vue3-tui-grid' {
|
||
|
import type { Plugin } from 'vue';
|
||
|
const TuiGrid: Plugin;
|
||
|
export default TuiGrid;
|
||
|
export type TuiGridElement = any;
|
||
|
export type GridEvent = any;
|
||
|
}
|
||
|
|