Type Alias ActionAreaPredicate

ActionAreaPredicate: ((meta: CellAddress & {
    grid: ListGridAPI<any>;
    pointInCell: {
        x: number;
        y: number;
    };
    pointInDrawingCanvas: {
        x: number;
        y: number;
    };
}) => boolean)