Interface ChangeInfo<T>

ChangeInfo represents the modifications made during a document update and the message passed.

interface ChangeInfo<T> {
    actor: string;
    clientSeq: number;
    message: string;
    operations: T[];
    serverSeq: string;
}

Type Parameters

Properties

actor: string
clientSeq: number
message: string
operations: T[]
serverSeq: string