web - implement callback auth flow

This commit is contained in:
Benjamin Pasero
2019-08-22 10:41:30 +02:00
parent 284c04475e
commit 719cdaa87c
22 changed files with 303 additions and 65 deletions

View File

@@ -567,6 +567,7 @@ export interface ExtHostWebviewsShape {
export interface MainThreadUrlsShape extends IDisposable {
$registerUriHandler(handle: number, extensionId: ExtensionIdentifier): Promise<void>;
$unregisterUriHandler(handle: number): Promise<void>;
$createAppUri(extensionId: ExtensionIdentifier, options?: { payload?: Partial<UriComponents> }): Promise<UriComponents>;
}
export interface ExtHostUrlsShape {