Files
spring-tools/vscode-extensions/vscode-spring-boot/lib/notification.ts
2022-04-05 15:52:11 -07:00

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');
}