Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/discordeno/bot.ts>RemoveFirstFromTuple

Discord API library for Deno
Go to Latest
type alias RemoveFirstFromTuple
import { type RemoveFirstFromTuple } from "https://deno.land/x/discordeno@17.0.1/bot.ts";

Type Parameters

T extends any[]
definition: T["length"] extends 0 ? [] : ((...b: T) => void) extends (a: any, ...b: infer I) => void ? I : []