import type { Insertable, Updateable, Selectable } from 'kysely'; import type { cuid, date_added, date_updated } from '../utils.js'; interface PiecesItemsTable { id: cuid; file_path: string; type: string; date_added: date_added; date_updated: date_updated; note_markdown: string; frontmatter_json: string; assets_json_array?: string; } type PiecesItemsSelectable = Selectable; type PiecesItemsInsertable = Insertable; type PiecesItemsUpdateable = Updateable; export { type PiecesItemsTable, type PiecesItemsSelectable, type PiecesItemsInsertable, type PiecesItemsUpdateable, };