We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a6b1a47 + cb33b6c commit 1f7426aCopy full SHA for 1f7426a
frontend/src/lib/types/Model.ts
@@ -0,0 +1,26 @@
1
+export type Model = {
2
+ name: string;
3
+ id: string;
4
+ online: boolean;
5
+ production: boolean;
6
+ team: string;
7
+ modelType: string;
8
+ createTime: number;
9
+ lastUpdated: number;
10
+};
11
+
12
+export type ModelsResponse = {
13
+ offset: number;
14
+ items: Model[];
15
16
17
+export type TimeSeriesItem = {
18
+ value: number;
19
+ ts: number;
20
+ label: string | null;
21
22
23
+export type TimeSeriesResponse = {
24
25
+ items: TimeSeriesItem[];
26
frontend/src/test/unit/index.test.ts
0 commit comments