UNPKG

weather-in-terminal

Version:

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

10 lines (9 loc) 219 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Wind { constructor(speed, direction) { this.speed = speed; this.direction = direction; } } exports.Wind = Wind;