mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 14:56:17 -04:00
11 lines
185 B
TypeScript
11 lines
185 B
TypeScript
![]() |
interface ToolConfig {
|
||
|
title: string;
|
||
|
description: string;
|
||
|
icon: string;
|
||
|
keywords: string[];
|
||
|
}
|
||
|
|
||
|
type ToolConfigMethod = () => ToolConfig;
|
||
|
|
||
|
export {ToolConfig, ToolConfigMethod}
|