Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbreuer committed Oct 23, 2024
1 parent bfc96c1 commit 8f455e1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion fixtures/output/example-0001.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,12 @@ export declare interface ComplexGeneric<T extends Record<string, unknown>, K ext
nested: Array<Partial<T>>;
}

export declare type ComplexUnionIntersection = ;
export declare type ComplexUnionIntersection =
| (User & { role: 'admin' })
| (Product & { category: string })
& {
metadata: Record<string, unknown>
}

export * from './extract';
export * from './generate';
Expand Down

0 comments on commit 8f455e1

Please sign in to comment.