Make args types internal

This commit is contained in:
Andrew Casey
2019-06-26 15:09:30 -07:00
parent 96fcf1e0c0
commit 2d785c8c91
2 changed files with 2 additions and 26 deletions
+2
View File
@@ -777,6 +777,7 @@ namespace ts.server.protocol {
/**
* Arguments for EncodedSyntacticClassificationsRequest request.
*/
/** @internal */
export interface EncodedSyntacticClassificationsRequestArgs extends FileRequestArgs {
/**
* Start position of the span.
@@ -799,6 +800,7 @@ namespace ts.server.protocol {
/**
* Arguments for EncodedSemanticClassificationsRequest request.
*/
/** @internal */
export interface EncodedSemanticClassificationsRequestArgs extends FileRequestArgs {
/**
* Start position of the span.
-26
View File
@@ -6414,32 +6414,6 @@ declare namespace ts.server.protocol {
*/
body?: string[];
}
/**
* Arguments for EncodedSyntacticClassificationsRequest request.
*/
interface EncodedSyntacticClassificationsRequestArgs extends FileRequestArgs {
/**
* Start position of the span.
*/
start: number;
/**
* Length of the span.
*/
length: number;
}
/**
* Arguments for EncodedSemanticClassificationsRequest request.
*/
interface EncodedSemanticClassificationsRequestArgs extends FileRequestArgs {
/**
* Start position of the span.
*/
start: number;
/**
* Length of the span.
*/
length: number;
}
/**
* Arguments in document highlight request; include: filesToSearch, file,
* line, offset.