From 787a747aa9b4c39d050e3072fcc8f6f38f994c80 Mon Sep 17 00:00:00 2001 From: James P <jp@drvortex.dev> Date: Thu, 2 May 2024 13:57:47 -0500 Subject: [PATCH] No export of isStruct --- src/struct.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/struct.ts b/src/struct.ts index 1274829..6a7efb7 100644 --- a/src/struct.ts +++ b/src/struct.ts @@ -63,7 +63,7 @@ function isInstance(arg: unknown): arg is Instance { return metadata in (arg?.constructor || {}); } -export function isStruct(arg: unknown): arg is Instance | Static { +function isStruct(arg: unknown): arg is Instance | Static { return isInstance(arg) || isStatic(arg); }