org/eu/es/region/SpainCity.ts

Summary

Maintainability
A
35 mins
Test Coverage
import { Department } from "../../../country/region/department/Department"
import { City } from "../../../country/region/department/city/City"
import { Place } from "../../../../place/Place"

export function spainCity(code: string, province: Department, place: Place): City {
  return new City(code, province, [place])
}