import { type PartialList } from "https://deno.land/x/froebel@v0.21.3/types.ts";
Any list of the n
-first elements of T
.
definition: T extends [infer L, ...infer R] ? [] | [Widen<L>] | [Widen<L>, ...PartialList<R>] : []
import { type PartialList } from "https://deno.land/x/froebel@v0.21.3/types.ts";
Any list of the n
-first elements of T
.