import { Selectable } from "kysely";

export interface Repo {
  did: string;
  handle: string;
  ip: string;
  profile: string;
  indexedAt: string;
  email: string;
  emailConfirmedAt: string | null;
  threatSignatures: string;
  labels: string;
}

export type RepoRow = Selectable<Repo>;
