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.
AnyObject
1 parent 1702d3f commit b4444f4Copy full SHA for b4444f4
packages/toolkit/src/tsHelpers.ts
@@ -245,3 +245,10 @@ export type AnyFunction = (...args: any[]) => any
245
* @internal
246
*/
247
export type EmptyObject = Record<string, never>
248
+
249
+/**
250
+ * Represents a generic object with `string` keys and values of `any` type.
251
+ *
252
+ * @internal
253
+ */
254
+export type AnyObject = Record<string, any>
0 commit comments