mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-08-03 20:45:18 +02:00
chore: first commit
This commit is contained in:
commit
64c92a661c
37 changed files with 13458 additions and 0 deletions
9
src/tools/Tool.ts
Normal file
9
src/tools/Tool.ts
Normal file
|
@ -0,0 +1,9 @@
|
|||
import type { Component } from 'vue';
|
||||
|
||||
export interface ITool {
|
||||
name: string;
|
||||
path: string;
|
||||
description: string;
|
||||
keywords: string[];
|
||||
component: () => Promise<Component>;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue