import type { Generated, Insertable, Selectable, Updateable } from 'kysely'; export interface PageTable { id: Generated; name: string | null; } export type Persion = Selectable; export type PersionNew = Insertable; export type PersionUpdate = Updateable;