File tree 2 files changed +7
-8
lines changed
2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 1
1
/* @internal */
2
2
namespace ts . server {
3
+ export type ActionSet = "action::set" ;
4
+ export type ActionInvalidate = "action::invalidate" ;
5
+ export type ActionPackageInstalled = "action::packageInstalled" ;
6
+ export type EventTypesRegistry = "event::typesRegistry" ;
7
+ export type EventBeginInstallTypes = "event::beginInstallTypes" ;
8
+ export type EventEndInstallTypes = "event::endInstallTypes" ;
9
+ export type EventInitializationFailed = "event::initializationFailed" ;
3
10
export const ActionSet : ActionSet = "action::set" ;
4
11
export const ActionInvalidate : ActionInvalidate = "action::invalidate" ;
5
12
export const ActionPackageInstalled : ActionPackageInstalled = "action::packageInstalled" ;
Original file line number Diff line number Diff line change 1
1
declare namespace ts . server {
2
- export type ActionSet = "action::set" ;
3
- export type ActionInvalidate = "action::invalidate" ;
4
- export type ActionPackageInstalled = "action::packageInstalled" ;
5
- export type EventTypesRegistry = "event::typesRegistry" ;
6
- export type EventBeginInstallTypes = "event::beginInstallTypes" ;
7
- export type EventEndInstallTypes = "event::endInstallTypes" ;
8
- export type EventInitializationFailed = "event::initializationFailed" ;
9
-
10
2
export interface TypingInstallerResponse {
11
3
readonly kind : ActionSet | ActionInvalidate | EventTypesRegistry | ActionPackageInstalled | EventBeginInstallTypes | EventEndInstallTypes | EventInitializationFailed ;
12
4
}
You can’t perform that action at this time.
0 commit comments