Provides data regarding the latest document change / update.

interface Update {
    action: string;
    data: string[] | { [key: string]: unknown }[];
    docType?: string;
}
Index
action: string

The update action. Useful for filtering.

data: string[] | { [key: string]: unknown }[]

Foundry data associated with document changes.

docType?: string

Document type.