about summary refs log tree commit diff
path: root/bskylink/src/db/schema.ts
blob: 8d97f580054b5e13c3f72f1604d496f4e86f61f8 (plain) (blame)
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>