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 5b57c55 commit 44f69e1Copy full SHA for 44f69e1
widgets/src/lib/types.ts
@@ -32,6 +32,7 @@ export type Step = {
32
status: Status;
33
};
34
35
+// @todo This can be any object (the the keys and the value types are not static).
36
type MetaDataItem = {
37
branch: string;
38
cpr: string;
@@ -56,6 +57,7 @@ export type RawData = {
56
57
58
export type ProgressData = {
59
columns: Column[];
60
+ // @todo The raw run data will be removed shortly.
61
data: RawData[];
62
rows: Array<Array<Step>>;
63
0 commit comments