Files
dashlio/app/types/module.ts
Daryn 08bb142c0a
Some checks failed
ci / ci (22, ubuntu-latest) (push) Has been cancelled
Added more modules
2026-04-19 18:42:34 +01:00

9 lines
244 B
TypeScript

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: (params: Record<string, any>) => VNode | any;
}