Skip to content

Commit 0656e15

Browse files
add configuration types
1 parent 4a23585 commit 0656e15

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

client/src/lib/configurationTypes.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
export type ConfigItem = {
2+
description: string;
3+
value: string | number | boolean;
4+
}
5+
6+
export type InspectorConfig = {
7+
MCP_SERVER_REQUEST_TIMEOUT: ConfigItem;
8+
};

0 commit comments

Comments
 (0)