UNPKG

auron

Version:

Interact with your ATProto labeler from your terminal

14 lines (11 loc) 309 B
import { Kysely } from "kysely"; import { Subject } from "./subject"; import { Repo } from "./repo"; import { Record } from "./record"; // Define the database interface export interface DatabaseSchema { subjects: Subject; repos: Repo; records: Record; } export type Database = Kysely<DatabaseSchema>;