mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 16:26:15 -04:00
16 lines
294 B
TypeScript
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[];
|
|
}
|