File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -808,19 +808,19 @@ namespace ts.server {
808808 return notImplemented ( ) ;
809809 }
810810
811- toggleLineComment ( ) : ts . TextChange [ ] {
811+ toggleLineComment ( ) : TextChange [ ] {
812812 throw new Error ( "Method not implemented." ) ;
813813 }
814814
815- toggleMultilineComment ( ) : ts . TextChange [ ] {
815+ toggleMultilineComment ( ) : TextChange [ ] {
816816 throw new Error ( "Method not implemented." ) ;
817817 }
818818
819- commentSelection ( ) : ts . TextChange [ ] {
819+ commentSelection ( ) : TextChange [ ] {
820820 throw new Error ( "Method not implemented." ) ;
821821 }
822822
823- uncommentSelection ( ) : ts . TextChange [ ] {
823+ uncommentSelection ( ) : TextChange [ ] {
824824 throw new Error ( "Method not implemented." ) ;
825825 }
826826
Original file line number Diff line number Diff line change @@ -279,7 +279,7 @@ namespace ts {
279279 getEmitOutputObject ( fileName : string ) : EmitOutput ;
280280
281281 toggleLineComment ( fileName : string , textChange : TextRange ) : string ;
282- toggleMultilineComment ( fileName : string , textChange :TextRange ) : string ;
282+ toggleMultilineComment ( fileName : string , textChange : TextRange ) : string ;
283283 commentSelection ( fileName : string , textChange : TextRange ) : string ;
284284 uncommentSelection ( fileName : string , textChange : TextRange ) : string ;
285285 }
You can’t perform that action at this time.
0 commit comments