mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 01:58:53 +01:00
Add connectionData to IInitData.remote
This commit is contained in:
@@ -85,6 +85,12 @@ export interface IWorkspaceData extends IStaticWorkspaceData {
|
||||
folders: { uri: UriComponents, name: string, index: number; }[];
|
||||
}
|
||||
|
||||
export interface IRemoteConnectionData {
|
||||
host: string;
|
||||
port: number;
|
||||
connectionToken: string;
|
||||
}
|
||||
|
||||
export interface IInitData {
|
||||
version: string;
|
||||
commit?: string;
|
||||
@@ -99,7 +105,7 @@ export interface IInitData {
|
||||
logsLocation: URI;
|
||||
logFile: URI;
|
||||
autoStart: boolean;
|
||||
remote: { isRemote: boolean; authority: string | undefined; };
|
||||
remote: { isRemote: boolean; authority: string | undefined; connectionData: IRemoteConnectionData | undefined; };
|
||||
uiKind: UIKind;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user