Interface ButtonBuilderProps

interface ButtonBuilderProps {
    customId: string;
    disabled?: boolean;
    emoji?: string;
    label: string;
    style: "Primary" | "Secondary" | "Success" | "Danger" | "Link" | "Premium";
    url?: string;
}

Properties

customId: string
disabled?: boolean
emoji?: string
label: string
style: "Primary" | "Secondary" | "Success" | "Danger" | "Link" | "Premium"
url?: string