Interface ActionRowData<ComponentType>

interface ActionRowData<
    ComponentType extends
        JSONEncodable<APIComponentInActionRow>
        | ActionRowComponentData,
> {
    components: readonly ComponentType[];
    id?: number;
    type: ComponentType;
}

Type Parameters

Hierarchy (View Summary)

Properties

Properties

components: readonly ComponentType[]
id?: number