UNPKG

dressed

Version:

A sleek, serverless-ready Discord bot framework.

8 lines (7 loc) 447 B
import { type APIActionRowComponent, type APIButtonComponent, type APIComponentInActionRow } from "discord-api-types/v10"; /** * Creates an action row component * * Container to display a row of interactive components */ export declare function ActionRow<T extends APIComponentInActionRow>(...components: (T extends APIButtonComponent ? APIButtonComponent : T)[]): APIActionRowComponent<T extends APIButtonComponent ? APIButtonComponent : T>;