Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/ts_essentials/lib/mod.ts>Tail

All basic TypeScript types in one place 🤙
Latest
type alias Tail
import { type Tail } from "https://deno.land/x/ts_essentials@v9.1.2/lib/mod.ts";
definition: T["length"] extends 0 ? never : ((...t: T) => void) extends (first: any, ...rest: infer Rest) => void ? Rest : never