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.
EmptyObject
1 parent 9fff24a commit 1702d3fCopy full SHA for 1702d3f
packages/toolkit/src/tsHelpers.ts
@@ -238,3 +238,10 @@ export type AnyNonNullishValue = NonNullable<unknown>
238
* @internal
239
*/
240
export type AnyFunction = (...args: any[]) => any
241
+
242
+/**
243
+ * Represents a strictly empty plain object, the `{}` value.
244
+ *
245
+ * @internal
246
+ */
247
+export type EmptyObject = Record<string, never>
0 commit comments