UNPKG

auron

Version:

Interact with your ATProto labeler from your terminal

16 lines (13 loc) 290 B
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>;