feat: json pretty

This commit is contained in:
Ibrahima G. Coulibaly
2025-02-27 13:05:38 +00:00
parent 18c305ac9b
commit d2eb7030d8
12 changed files with 78 additions and 49 deletions

View File

@@ -12,7 +12,13 @@ interface ToolOptions {
shortDescription: string;
}
export type ToolCategory = 'string' | 'png' | 'number' | 'gif' | 'list';
export type ToolCategory =
| 'string'
| 'png'
| 'number'
| 'gif'
| 'list'
| 'json';
export interface DefinedTool {
type: ToolCategory;