Skip to content

Commit

Permalink
Fix missing export (#1011)
Browse files Browse the repository at this point in the history
  • Loading branch information
aidenfoxx authored Dec 16, 2024
1 parent fdbcb11 commit 527d600
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/shared-union-fields.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function displayPetInfo(petInfo: SharedUnionFields<Cat | Dog>) {
@category Object
@category Union
*/
type SharedUnionFields<Union> =
export type SharedUnionFields<Union> =
Extract<Union, NonRecursiveType | ReadonlyMap<unknown, unknown> | ReadonlySet<unknown> | UnknownArray> extends infer SkippedMembers
? Exclude<Union, SkippedMembers> extends infer RelevantMembers
?
Expand Down

0 comments on commit 527d600

Please sign in to comment.