// @generated // This file is automatically generated by Kanel. Do not modify manually. import type { ColumnType, Insertable, Selectable, Updateable } from "kysely"; import type { AnnunciId } from "./Annunci"; import type { UsersId } from "./Users"; /** 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;