Interface PageAction

interface PageAction {
    attrs: {
        actionId: number;
        actionName: string;
        attributes: {
            disabled: boolean;
            displayName: string;
            [property: string]: any;
        };
        controlId?: number;
        displayName: string;
    };
}

Properties

Properties

attrs: {
    actionId: number;
    actionName: string;
    attributes: {
        disabled: boolean;
        displayName: string;
        [property: string]: any;
    };
    controlId?: number;
    displayName: string;
}