Use isRemote instead of remote authority to determine where to load from

This commit is contained in:
Matt Bierner
2021-05-20 11:30:04 -07:00
parent 6f2381e33d
commit 18ea5ac15e
5 changed files with 10 additions and 9 deletions

View File

@@ -8,7 +8,10 @@ import { URI } from 'vs/base/common/uri';
import type * as vscode from 'vscode';
export interface WebviewInitData {
readonly remote: { readonly authority: string | undefined };
readonly remote: {
readonly isRemote: boolean;
readonly authority: string | undefined
};
}
/**