import type { Insertable, Updateable, Selectable } from 'kysely'; import type { cuid, date_added, date_updated } from '../utils.js'; interface PieceManagerTable { id: cuid; date_added: date_added; date_updated?: date_updated; name: string; schema: string; } type PieceManagerSelect = Selectable; type PieceManagerInsert = Insertable; type PieceManagerUpdate = Updateable; export { type PieceManagerTable, type PieceManagerSelect, type PieceManagerInsert, type PieceManagerUpdate, };