mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 16:26:15 -04:00
refactor: renammed Tool.ts to tool.ts
This commit is contained in:
parent
2f61c745f5
commit
ac89490794
25 changed files with 24 additions and 24 deletions
17
src/tools/tool.ts
Normal file
17
src/tools/tool.ts
Normal file
|
@ -0,0 +1,17 @@
|
|||
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[];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue