diff options
-rw-r--r-- | editors/code/src/installation/fetch_latest_artifact_metadata.ts | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/editors/code/src/installation/fetch_latest_artifact_metadata.ts b/editors/code/src/installation/fetch_latest_artifact_metadata.ts index cda955af2..f1019e089 100644 --- a/editors/code/src/installation/fetch_latest_artifact_metadata.ts +++ b/editors/code/src/installation/fetch_latest_artifact_metadata.ts | |||
@@ -31,17 +31,12 @@ export async function fetchLatestArtifactMetadata( | |||
31 | downloadUrl: artifact.browser_download_url | 31 | downloadUrl: artifact.browser_download_url |
32 | }; | 32 | }; |
33 | 33 | ||
34 | // Noise denotes tremendous amount of data that we are not using here | 34 | // We omit declaration of tremendous amount of fields that we are not using here |
35 | interface GithubRelease { | 35 | interface GithubRelease { |
36 | name: string; | 36 | name: string; |
37 | assets: Array<{ | 37 | assets: Array<{ |
38 | name: string; | 38 | name: string; |
39 | browser_download_url: string; | 39 | browser_download_url: string; |
40 | |||
41 | [noise: string]: unknown; | ||
42 | }>; | 40 | }>; |
43 | |||
44 | [noise: string]: unknown; | ||
45 | } | 41 | } |
46 | |||
47 | } | 42 | } |