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.
1 parent 36b1608 commit eaa8e72Copy full SHA for eaa8e72
widgets/src/lib/types.ts
@@ -36,6 +36,7 @@ export type Step = {
36
can_rerun: boolean | null;
37
};
38
39
+// @todo This can be any object (the the keys and the value types are not static).
40
type MetaDataItem = {
41
branch: string;
42
cpr: string;
@@ -60,6 +61,7 @@ export type RawData = {
60
61
62
export type ProgressData = {
63
columns: Column[];
64
+ // @todo The raw run data will be removed shortly.
65
data: RawData[];
66
rows: Array<Array<Step>>;
67
0 commit comments