Skip to content

Commit 635cde0

Browse files
committed
chore: remove some dead export statements
1 parent a9a7241 commit 635cde0

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

extensions/ql-vscode/src/compare-performance/remote-logs.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,23 @@ type VariantId = string;
2525
type SourceId = string;
2626
type TargetId = string;
2727

28-
export type TargetInfo = {
28+
type TargetInfo = {
2929
target_id: TargetId;
3030
variant_id: VariantId;
3131
source_id: SourceId;
3232
};
33-
export type ArtifactDownload = {
33+
34+
type ArtifactDownload = {
3435
repository: string;
3536
run_id: number;
3637
artifact_name: string;
3738
};
3839

39-
export type TargetDownloads = {
40+
type TargetDownloads = {
4041
"evaluator-logs": ArtifactDownload;
4142
};
4243

43-
export type MinimalDownloadsType = {
44+
type MinimalDownloadsType = {
4445
targets: {
4546
[target: string]: {
4647
info: TargetInfo;

0 commit comments

Comments
 (0)