Type Alias BasicOperation

BasicOperation: {
    retain: number;
} | {
    insert: string;
} | {
    delete: number;
}

Represents a basic operation in the operational transformation.