// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely'; /** Identifier type for public.testi_e_stringhe */ export type TestiEStringheStingaId = string & { __brand: 'public.testi_e_stringhe' }; /** Represents the table public.testi_e_stringhe */ export default interface TestiEStringheTable { stinga_id: ColumnType; stringa_value: ColumnType; } export type TestiEStringhe = Selectable; export type NewTestiEStringhe = Insertable; export type TestiEStringheUpdate = Updateable;