From 8f455e1c090a83c03cc8d6a1124defc845e0cc6d Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 23 Oct 2024 22:19:01 +0200 Subject: [PATCH] chore: wip --- fixtures/output/example-0001.d.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/fixtures/output/example-0001.d.ts b/fixtures/output/example-0001.d.ts index 8e0a2c3..541e8b1 100644 --- a/fixtures/output/example-0001.d.ts +++ b/fixtures/output/example-0001.d.ts @@ -128,7 +128,12 @@ export declare interface ComplexGeneric, K ext nested: Array>; } -export declare type ComplexUnionIntersection = ; +export declare type ComplexUnionIntersection = + | (User & { role: 'admin' }) + | (Product & { category: string }) + & { + metadata: Record + } export * from './extract'; export * from './generate';