Added basic module support
This commit is contained in:
8
app/types/module.ts
Normal file
8
app/types/module.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import type { VNode } from 'vue';
|
||||
|
||||
export interface DashboardModule {
|
||||
name: string;
|
||||
width: number; // Number of grid columns to span
|
||||
height: number; // Number of grid rows to span
|
||||
render: () => VNode | any;
|
||||
}
|
||||
Reference in New Issue
Block a user