13 lines
464 B
TypeScript
13 lines
464 B
TypeScript
import { NotificationType } from "vscode-languageclient";
|
|
|
|
export namespace LiveProcessConnectedNotification {
|
|
export const type = new NotificationType<string>('sts/liveprocess/connected');
|
|
}
|
|
|
|
export namespace LiveProcessDisconnectedNotification {
|
|
export const type = new NotificationType<string>('sts/liveprocess/disconnected');
|
|
}
|
|
|
|
export namespace LiveProcessUpdatedNotification {
|
|
export const type = new NotificationType<string>('sts/liveprocess/updated');
|
|
} |