UNPKG

weather-in-terminal

Version:

A simple CLI to see the weather while you're in your terminal.

10 lines 337 B
import { TemperatureUnit } from './temperatureUnit'; export { TemperatureUnit } from './temperatureUnit'; export declare class Temperature { private _celsius; private _fahrenheit; constructor(temperature: number, unit: TemperatureUnit); celsius: number; fahrenheit: number; } //# sourceMappingURL=temperature.d.ts.map