Interface IGroupAction

interface IGroupAction {
    className?: string;
    icon?: string;
    name: string;
    action(group: IGroup, rows: IDataRow[]): void;
}

Properties

Methods

Properties

className?: string
icon?: string
name: string

Methods