it-tools/src/tools/Tool.ts
2022-04-16 10:10:21 +02:00

17 lines
321 B
TypeScript

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