homemanager-fe/src/components/house-planner/interfaces/toolbar.interfaces.ts

10 lines
172 B
TypeScript

import type { Component } from 'vue';
export interface ToolbarTool {
title: string;
icon: Component;
tool: string;
subTool?: string;
children?: ToolbarTool[];
}