UNPKG

@atproto/ozone

Version:

Backend service for moderating the Bluesky network.

14 lines (10 loc) 247 B
import { Generated } from 'kysely' export const jobCursorTableName = 'job_cursor' export interface JobCursor { job: string cursor: string | null updatedAt: Generated<string> } export type PartialDB = { [jobCursorTableName]: JobCursor }