You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The downloadArtifact function currently has a return type of Promise<string>. It should actually be Promise<object> or maybe an any as the method returns the contents of the artifact and not necessarily a string.
The
downloadArtifactfunction currently has a return type ofPromise<string>. It should actually bePromise<object>or maybe an any as the method returns the contents of the artifact and not necessarily a string.