2019-01-18 21:46:40 +00:00
|
|
|
// package:
|
|
|
|
// file: vscode.proto
|
|
|
|
|
|
|
|
import * as jspb from "google-protobuf";
|
|
|
|
|
2019-04-02 22:44:28 +00:00
|
|
|
export class SharedProcessActive extends jspb.Message {
|
2019-01-18 23:08:44 +00:00
|
|
|
getSocketPath(): string;
|
|
|
|
setSocketPath(value: string): void;
|
2019-01-18 21:46:40 +00:00
|
|
|
|
2019-01-28 17:14:06 +00:00
|
|
|
getLogPath(): string;
|
|
|
|
setLogPath(value: string): void;
|
|
|
|
|
2019-01-18 21:46:40 +00:00
|
|
|
serializeBinary(): Uint8Array;
|
2019-04-02 22:44:28 +00:00
|
|
|
toObject(includeInstance?: boolean): SharedProcessActive.AsObject;
|
|
|
|
static toObject(includeInstance: boolean, msg: SharedProcessActive): SharedProcessActive.AsObject;
|
2019-01-18 21:46:40 +00:00
|
|
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
|
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
2019-04-02 22:44:28 +00:00
|
|
|
static serializeBinaryToWriter(message: SharedProcessActive, writer: jspb.BinaryWriter): void;
|
|
|
|
static deserializeBinary(bytes: Uint8Array): SharedProcessActive;
|
|
|
|
static deserializeBinaryFromReader(message: SharedProcessActive, reader: jspb.BinaryReader): SharedProcessActive;
|
2019-01-18 21:46:40 +00:00
|
|
|
}
|
|
|
|
|
2019-04-02 22:44:28 +00:00
|
|
|
export namespace SharedProcessActive {
|
2019-01-18 21:46:40 +00:00
|
|
|
export type AsObject = {
|
2019-01-18 23:08:44 +00:00
|
|
|
socketPath: string,
|
2019-01-28 17:14:06 +00:00
|
|
|
logPath: string,
|
2019-01-18 21:46:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|