Tidy 5e Sheets API
    Preparing search index...

    Type Alias EffectRowActionConditionData

    The available args data when evaluating the relevant row action's optional condition callback. Use this data (and any external data like settings, flags, etc.) to decide if your row action should be included for a given row in the table.

    type EffectRowActionConditionData = {
        app: any;
        data: CommonConditionContextData;
        rowDocument: ActiveEffect5e;
        sheetDocument: Actor5e | Item5e;
    }
    Index

    Properties

    app: any

    The sheet application instance.

    Common access-level data for convenience.

    rowDocument: ActiveEffect5e

    The active effect represented by this row.

    sheetDocument: Actor5e | Item5e

    The sheet-level document.