@@ -4,13 +4,10 @@ import { CodeActionParams, RequestType } from "vscode-languageclient";
44export const GetMoveDestinationRequest = new RequestType <
55 IMoveParams ,
66 IMoveDestinationsResponse ,
7- void ,
87 void
98> ( "elm/getMoveDestinations" ) ;
109
11- export const MoveRequest = new RequestType < IMoveParams , void , void , void > (
12- "elm/move" ,
13- ) ;
10+ export const MoveRequest = new RequestType < IMoveParams , void , void > ( "elm/move" ) ;
1411
1512export interface IMoveParams {
1613 sourceUri : string ;
@@ -28,12 +25,9 @@ export interface IMoveDestination {
2825 uri : string ;
2926}
3027
31- export const ExposeRequest = new RequestType <
32- IExposeUnexposeParams ,
33- void ,
34- void ,
35- void
36- > ( "elm/expose" ) ;
28+ export const ExposeRequest = new RequestType < IExposeUnexposeParams , void , void > (
29+ "elm/expose" ,
30+ ) ;
3731
3832export interface IExposeUnexposeParams {
3933 uri : string ;
@@ -43,7 +37,6 @@ export interface IExposeUnexposeParams {
4337export const UnexposeRequest = new RequestType <
4438 IExposeUnexposeParams ,
4539 void ,
46- void ,
4740 void
4841> ( "elm/unexpose" ) ;
4942
@@ -54,13 +47,11 @@ export interface IOnDidCreateFilesParams {
5447export const OnDidCreateFilesRequest = new RequestType <
5548 FileCreateEvent ,
5649 void ,
57- void ,
5850 void
5951> ( "elm/ondidCreateFiles" ) ;
6052
6153export const OnDidRenameFilesRequest = new RequestType <
6254 FileRenameEvent ,
6355 void ,
64- void ,
6556 void
6657> ( "elm/ondidRenameFiles" ) ;
0 commit comments