// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely'; /** Identifier type for public.miogest_images_ref */ export type MiogestImagesRefCodice = string & { __brand: 'public.miogest_images_ref' }; /** Represents the table public.miogest_images_ref */ export default interface MiogestImagesRefTable { codice: ColumnType; foto: ColumnType; } export type MiogestImagesRef = Selectable; export type NewMiogestImagesRef = Insertable; export type MiogestImagesRefUpdate = Updateable;