import type { DataItem } from "@tai-kun/surrealdb/cbor"; export type ThingTableSource = DataItem.Utf8String.FixedLength["value"]; export type ThingIdSource = DataItem.UnsignedInteger["value"] | DataItem.NegativeInteger["value"] | DataItem.Utf8String.FixedLength["value"] | object; export type ThingSource = readonly [ table: TTable, id: TId ]; /** * [API Reference](https://tai-kun.github.io/surrealdb.js/v2/api/data/thing) */ export default class Thing { readonly table: TTable; readonly id: TId; constructor(source: ThingSource); } //# sourceMappingURL=thing.d.ts.map