import { Thing as Base, type ThingIdSource, type ThingSource, type ThingTableSource } from "@tai-kun/surrealdb/encodable-datatypes"; import type { TableLike } from "./table"; export type { ThingIdSource, ThingSource, ThingTableSource }; /** * [API Reference](https://tai-kun.github.io/surrealdb.js/v2/api/data/thing) */ export default class Thing extends Base { table: TTable; id: TId; constructor(source: ThingSource); constructor(table: TTable | TableLike, id: TId); clone(): this; } //# sourceMappingURL=thing.d.ts.map