fix: bug with missing longDescription in i18n property fixed

This commit is contained in:
AshAnand34
2025-07-12 23:17:29 -07:00
parent c281eadd73
commit 187e9b9c4d

View File

@@ -15,6 +15,7 @@ export interface ToolMeta {
name: string;
description: string;
shortDescription: string;
longDescription?: string;
};
}