Update API baseline

This commit is contained in:
Andrew Casey 2019-06-21 14:55:29 -07:00
parent 2953574eba
commit 96fcf1e0c0

View file

@ -6414,6 +6414,19 @@ 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.
*/
@ -9075,6 +9088,7 @@ declare namespace ts.server {
private updateErrorCheck;
private cleanProjects;
private cleanup;
private getEncodedSyntacticClassifications;
private getEncodedSemanticClassifications;
private getProject;
private getConfigFileAndProject;