Interface IDatabaseTableEvent<T>

Interface for key-value database table events.

interface IDatabaseTableEvent<T> {
    action: IDatabaseTableAction;
    value: T;
}

Type Parameters

Properties

Properties

The action performed on the table.

value: T

The value of the object.

Generated using TypeDoc