This commit is contained in:
2026-07-26 21:23:30 +00:00
parent 6fa0e1b9a6
commit 7c262aeb8b
60 changed files with 2359 additions and 582 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
declare function isObject(x: unknown): x is object;
declare function isObject<T>(x: T): x is T & object & Record<PropertyKey, unknown>;
export = isObject;