Preview:ts type Primitive = | null | undefined | string | number | boolean | symbol | bigint; type BuiltIns = Primitive | Date | RegExp; type Cloneable = Record<PropertyKey, unknown> | BuiltIns | Iterable<Cloneable> | Cloneable[] type ClonedIterable<T extends Iterable<unknown>> = T extends Iterable<infer R> ...
You can choose specific lines to embed by selecting them before copying the link.