Skip to content

Instantly share code, notes, and snippets.

View SidiqovAbbos's full-sized avatar

Abbos Sidiqov SidiqovAbbos

View GitHub Profile
@chase-moskal
chase-moskal / tree-node.ts
Last active October 8, 2022 01:22
typescript mappable tree node class
type Unpacked<T> =
T extends (infer U)[]
? U
: T extends (...args: any[]) => infer U
? U
: T extends Promise<infer U>
? U
: T