metaforecast/src/web/platforms.ts

13 lines
232 B
TypeScript
Raw Normal View History

import { Forecast } from "../backend/platforms";
2022-03-16 21:02:34 +00:00
export interface PlatformConfig {
name: string;
label: string;
color: string;
}
export type FrontendForecast = Forecast & {
platformLabel: string;
visualization?: any;
};