1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import {Selectable} from 'kysely' export type DbSchema = { link: Link } export interface Link { id: string type: LinkType path: string } export enum LinkType { StarterPack = 1, } export type LinkEntry = Selectable<Link>