it-tools/src/tools/Tool.ts
2022-04-04 00:24:45 +02:00

16 lines
294 B
TypeScript

import type { Component } from 'vue';
export interface ITool {
name: string;
path: string;
description: string;
keywords: string[];
component: () => Promise<Component>;
icon: Component;
}
export interface ToolCategory {
name: string;
icon: Component;
components: ITool[];
}