import type { Generated } from "kysely" export interface Database { contents: ContentTable } export interface ContentTable { id: Generated url: string blob_url: string loc: string author: string description: string created_at: Generated unlocked_counter: Generated }