weather-cli-nk_sm
Version:
cli for weather forecast
23 lines (22 loc) • 653 B
TypeScript
export default class LogService {
static error(message: string): void;
static success(message: string): void;
static help(): void;
private static colorTemperature;
private static getIcon;
static showWeather({ name, weather: [{ description, icon }], wind: { speed }, main: { temp, feels_like, humidity }, }: {
name: string;
weather: [{
description: string;
icon: string;
}];
wind: {
speed: string;
};
main: {
temp: string;
feels_like: string;
humidity: string;
};
}): void;
}