mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-07-29 01:59:36 +02:00
10 lines
182 B
TypeScript
10 lines
182 B
TypeScript
|
import type { Component } from 'vue';
|
||
|
|
||
|
export interface ITool {
|
||
|
name: string;
|
||
|
path: string;
|
||
|
description: string;
|
||
|
keywords: string[];
|
||
|
component: () => Promise<Component>;
|
||
|
}
|