Sporades SDK API
    Preparing search index...

    Type Alias TableAclRuleInput<Row>

    Input supplied to a table ACL rule.

    previous is populated for updates and deletes. next is populated for inserts and updates. row contains the row being checked when the operation naturally has a single row candidate.

    type TableAclRuleInput<
        Row extends Record<string, unknown> = Record<string, unknown>,
    > = {
        ctx: TableAclContext;
        next?: Row | null;
        operation: TableAclOperation;
        previous?: Row | null;
        row?: Row | null;
        table: string;
    }

    Type Parameters

    • Row extends Record<string, unknown> = Record<string, unknown>
    Index
    next?: Row | null
    previous?: Row | null
    row?: Row | null
    table: string