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

11 lines
257 B
TypeScript

import type { Component } from 'vue';
import { SubToolType, ToolType } from '../../../modules/house-planner/types';
export interface ToolbarTool {
title: string;
icon: Component;
tool: ToolType;
subTool?: SubToolType;
children?: ToolbarTool[];
}