Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/rimbu/actor/main/utils.ts>Tail

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
type alias Tail
import { type Tail } from "https://deno.land/x/rimbu@1.0.4/actor/main/utils.ts";

Utility type to retrieve the typed tail of a tuple.

Type Parameters

A extends any[]
definition: A extends [any, ...infer Rest] ? Rest : []