import { Selectable } from "kysely";

export interface Record {
  uri: string;
  cid: string;
  value: string;
  blobCids: string;
  indexedAt: string;
  blobs: string;
  labels: string;
}
export type RecordRow = Selectable<Record>;
