Skip to content

Commit

Permalink
Fix tsdoc issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed Nov 26, 2024
1 parent d933def commit cdbf4bc
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/masking/internal/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,20 @@ export type UnwrapFragmentRefs<TData> =
: never;

/**
```ts
CombineIntersection<
| { foo: string }
```ts
CombineIntersection<
| { foo: string }
| { __typename: "A"; a: string }
| { __typename: "B"; b1: number }
| { __typename: "B"; b2: string }
> =>
| { foo: string }
| CombineByTypeName<
| { __typename: "A"; a: string }
| { __typename: "B"; b1: number }
| { __typename: "B"; b2: string }
> =>
| { foo: string }
| CombineByTypeName<
| { __typename: "A"; a: string }
| { __typename: "B"; b1: number }
| { __typename: "B"; b2: string }
>
```
>
```
*/
type CombineIntersection<T> =
| Exclude<T, { __typename?: string }>
Expand Down

0 comments on commit cdbf4bc

Please sign in to comment.