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.
export
1 parent a9a7241 commit 635cde0Copy full SHA for 635cde0
extensions/ql-vscode/src/compare-performance/remote-logs.ts
@@ -25,22 +25,23 @@ type VariantId = string;
25
type SourceId = string;
26
type TargetId = string;
27
28
-export type TargetInfo = {
+type TargetInfo = {
29
target_id: TargetId;
30
variant_id: VariantId;
31
source_id: SourceId;
32
};
33
-export type ArtifactDownload = {
+
34
+type ArtifactDownload = {
35
repository: string;
36
run_id: number;
37
artifact_name: string;
38
39
-export type TargetDownloads = {
40
+type TargetDownloads = {
41
"evaluator-logs": ArtifactDownload;
42
43
-export type MinimalDownloadsType = {
44
+type MinimalDownloadsType = {
45
targets: {
46
[target: string]: {
47
info: TargetInfo;
0 commit comments