We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 127dd03 commit a659e14Copy full SHA for a659e14
1 file changed
packages/sdk/src/client-types.ts
@@ -1,9 +1,11 @@
1
import type { ConfigDto } from "./types";
2
3
/**
4
- * Base type for config objects
+ * Base type for config objects.
5
+ * Uses Record<string, unknown> so that keyof Configs = string,
6
+ * allowing untyped clients to accept any string config name.
7
*/
-export type Configs = object;
8
+export type Configs = Record<string, unknown>;
9
10
11
* Context object for override evaluation.
0 commit comments