UNPKG

133 BTypeScriptView Raw
1import { AnyArray } from "../any-array";
2export type Tail<Type extends AnyArray> = Type extends [any, ...infer Rest] ? Rest : never;