-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathsuperStruct.ts
31 lines (29 loc) · 1.13 KB
/
superStruct.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import type { AllKeys, MergeUnion } from './utils.js';
export type SuperStructArray<T extends Record<string, unknown>, Data, ArrayData = unknown> = {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
[Property in AllKeys<T>]?: [T] extends [any]
? NonNullable<T[Property]> extends Record<string, unknown>
? ArrayData & SuperStructArray<MergeUnion<NonNullable<T[Property]>>, Data, ArrayData>
: NonNullable<T[Property]> extends (infer A)[]
? ArrayData &
Record<
number | string,
NonNullable<A> extends Record<string, unknown>
? SuperStructArray<MergeUnion<NonNullable<A>>, Data, ArrayData>
: Data
>
: Data
: never;
};
export type SuperStruct<T, Data> = Partial<{
// eslint-disable-next-line @typescript-eslint/no-explicit-any
[Property in AllKeys<T>]: [T] extends [any]
? NonNullable<T[Property]> extends Record<string, unknown>
? SuperStruct<MergeUnion<NonNullable<T[Property]>>, Data>
: NonNullable<T[Property]> extends (infer A)[]
? NonNullable<A> extends Record<string, unknown>
? SuperStruct<MergeUnion<NonNullable<A>>, Data>
: Data
: Data
: never;
}>;