// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { AnnunciId } from './Annunci'; import type { UsersId } from './Users'; import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely'; /** Represents the table public.servizio_interessi */ export default interface ServizioInteressiTable { annuncioId: ColumnType; userId: ColumnType; } export type ServizioInteressi = Selectable; export type NewServizioInteressi = Insertable; export type ServizioInteressiUpdate = Updateable;