1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-07-19 21:29:37 +02:00
it-tools/types/ToolConfig.ts
2021-05-28 19:46:22 +02:00

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}