Skip to content

Commit

Permalink
No export of isStruct
Browse files Browse the repository at this point in the history
  • Loading branch information
james-pre committed May 2, 2024
1 parent 79124d5 commit 787a747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/struct.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 787a747

Please sign in to comment.