Tidy 5e Sheets API
    Preparing search index...

    Type Alias ItemRowActionConditionData

    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 ItemRowActionConditionData = {
        app: any;
        data: CommonConditionContextData;
        rowDocument: Item5e;
        sheetDocument: Actor5e | Item5e;
    }
    Index

    Properties

    app: any

    The sheet application instance.

    Common access-level data for convenience.

    rowDocument: Item5e

    The item represented by this row.

    sheetDocument: Actor5e | Item5e

    The sheet-level document.