A interface representing a list of operations in a slot.

interface IOperationListSlot {
    className?: string;
    operations: IListOperation<any, any>[];
    style?: any;
    width: number;
}

Properties

className?: string
operations: IListOperation<any, any>[]

Represents a list of operations to perform on an IList.

style?: any
width: number