Skip to content

Commit 96fcf1e

Browse files
committed
Update API baseline
1 parent 2953574 commit 96fcf1e

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

tests/baselines/reference/api/tsserverlibrary.d.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6414,6 +6414,19 @@ declare namespace ts.server.protocol {
64146414
*/
64156415
body?: string[];
64166416
}
6417+
/**
6418+
* Arguments for EncodedSyntacticClassificationsRequest request.
6419+
*/
6420+
interface EncodedSyntacticClassificationsRequestArgs extends FileRequestArgs {
6421+
/**
6422+
* Start position of the span.
6423+
*/
6424+
start: number;
6425+
/**
6426+
* Length of the span.
6427+
*/
6428+
length: number;
6429+
}
64176430
/**
64186431
* Arguments for EncodedSemanticClassificationsRequest request.
64196432
*/
@@ -9075,6 +9088,7 @@ declare namespace ts.server {
90759088
private updateErrorCheck;
90769089
private cleanProjects;
90779090
private cleanup;
9091+
private getEncodedSyntacticClassifications;
90789092
private getEncodedSemanticClassifications;
90799093
private getProject;
90809094
private getConfigFileAndProject;

0 commit comments

Comments
 (0)