mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-21 07:16:15 -04:00
14 lines
231 B
TypeScript
14 lines
231 B
TypeScript
|
|
interface ToolConfig {
|
|
title: string;
|
|
description: string;
|
|
icon: string;
|
|
keywords: string[];
|
|
path?: string
|
|
}
|
|
|
|
interface ToolRouteConfig extends ToolConfig{
|
|
componentPath: string
|
|
}
|
|
|
|
export {ToolConfig, ToolRouteConfig}
|