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 28389e4 commit f2ef6eeCopy full SHA for f2ef6ee
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