From f40b3f928c1a399657d110e5c50dc93cd69c4182 Mon Sep 17 00:00:00 2001 From: mesqueeb Date: Thu, 26 Oct 2023 13:48:56 +0900 Subject: [PATCH] fix: typo --- src/isFullObject.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/isFullObject.ts b/src/isFullObject.ts index a0159b9..6b68fef 100644 --- a/src/isFullObject.ts +++ b/src/isFullObject.ts @@ -1,9 +1,10 @@ -import { isPlainObject } from './isPlainObject.js' +import { PlainObject, isPlainObject } from './isPlainObject.js' /** - * Returns whether the payload is a an empty object (excluding special classes or objects with other prototypes) + * Returns whether the payload is a an empty object (excluding special classes or objects with other + * prototypes) * - * @param {*} payload + * @param {any} payload * @returns {payload is PlainObject} */ export function isFullObject(payload: any): payload is PlainObject {