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
exportclassIdToUrlMapperimplementsI_IdToUrlMapper{mapIdToUrl(id: UUID): UrlString{thrownewError("Method not implemented.");}mapUrlToId(url: UrlString): UUID{thrownewError("Method not implemented.");}}
Actual behavior:
Both methods use string:
exportclassIdToUrlMapperimplementsI_IdToUrlMapper{mapIdToUrl(id: string): string{thrownewError("Method not implemented.");}mapUrlToId(url: string): string{thrownewError("Method not implemented.");}}
From microsoft/vscode#90061
TypeScript Version: 3.8.1-rc
Search Terms:
Repo
Run implement interface on
IdToUrlMapper
Expected behavior:
Type aliases are preserved
Actual behavior:
Both methods use
string
:Related Issues
The text was updated successfully, but these errors were encountered: