import type { ColumnType, Selectable, Insertable, Updateable } from 'kysely'; /** Identifier type for public.provincie */ export type ProvincieId = number & { __brand: 'public.provincie' }; /** Represents the table public.provincie */ export default interface ProvincieTable { id: ColumnType; nome: ColumnType; sigla: ColumnType; } export type Provincie = Selectable; export type NewProvincie = Insertable; export type ProvincieUpdate = Updateable;