Represents a slot in an action list.

interface IActionListSlot<FilterData extends {} = IAnything> {
    actions: IListAction<any, any>[];
    className?: string;
    deps?: any[];
    filterData: FilterData;
    height: number;
    style?: any;
    title?: string;
    width: number;
}

Type Parameters

  • FilterData extends {} = IAnything

    The type of filter data for this slot.

Properties

actions: IListAction<any, any>[]

Represents a list of actions.

className?: string
deps?: any[]
filterData: FilterData
height: number
style?: any
title?: string
width: number