Interface DirectThreadEvent<T>

interface DirectThreadEvent<T> {
    data: T;
    name: string;
    operation: RealtimeOperationTypeEnum;
    path: string;
    thread_id: string;
    raw(): any;
}

Type Parameters

  • T = any

Hierarchy (view full)

Properties

Methods

Properties

data: T
name: string
path: string
thread_id: string

Methods

  • Implemented as function to not clogging console.log(event) with raw data.

    Returns any