import {TurkeyWeather} from "../dist/TurkeyWeather";

const API = new TurkeyWeather();

API.getProvinceNames().then(res => {
    console.log(res);
})