From 0656e15a22ebda6f0064071185d5163d222ca616 Mon Sep 17 00:00:00 2001 From: Pulkit Sharma Date: Mon, 24 Mar 2025 23:30:35 +0530 Subject: [PATCH] add configuration types --- client/src/lib/configurationTypes.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 client/src/lib/configurationTypes.ts diff --git a/client/src/lib/configurationTypes.ts b/client/src/lib/configurationTypes.ts new file mode 100644 index 0000000..2310c58 --- /dev/null +++ b/client/src/lib/configurationTypes.ts @@ -0,0 +1,8 @@ +export type ConfigItem = { + description: string; + value: string | number | boolean; +} + +export type InspectorConfig = { + MCP_SERVER_REQUEST_TIMEOUT: ConfigItem; +}; \ No newline at end of file