add configuration types

This commit is contained in:
Pulkit Sharma
2025-03-24 23:30:35 +05:30
parent 4a23585066
commit 0656e15a22

View File

@@ -0,0 +1,8 @@
export type ConfigItem = {
description: string;
value: string | number | boolean;
}
export type InspectorConfig = {
MCP_SERVER_REQUEST_TIMEOUT: ConfigItem;
};