Skip to main content
Module

x/rxjs/mod.ts>Tail

Deno port of RXJS
Latest
type alias Tail
import { type Tail } from "https://deno.land/x/rxjs@v1.0.2/mod.ts";

Extracts the tail of a tuple. If you declare Tail<[A, B, C]> you will get back [B, C].

Type Parameters

X extends readonly any[]
definition: ((...args: X) => any) extends (arg: any, ...rest: infer U) => any ? U : never