/** * Operation Types * * Defines the types of operations that can be performed on the database. */ /** * Operation types */ export declare enum OperationType { Insert = "Insert", Update = "Update", Delete = "Delete", Query = "Query", Upsert = "Upsert" } /** * A database operation */ export interface Operation { op_type: OperationType; key: string; value?: any; timestamp_ms: number; } //# sourceMappingURL=operation.d.ts.map