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