export type Province = { id: number, province_name: string, region_id: number } export function emptyProvince(): Province { return { id: 0, province_name: '', region_id: 0 } }