import type { DB, SQL, Table } from '../db/types.js'; export interface TemporalOptions { readonly tx: DB; readonly table: string | Table; readonly where: SQL; } export interface ReviseOptions extends TemporalOptions { readonly data: Record; readonly userId?: string; } export interface ReviseResult { readonly id: string; readonly version: number; } export interface GetCurrentResult { readonly id: string; readonly version: number; } //# sourceMappingURL=types.d.ts.map