Fix missing semi-colon in SemanticTokensClientCapabilities

This commit is contained in:
Nicolas Arnaud-Cormos 2021-05-14 20:03:19 +02:00
parent 73417646a7
commit ba4cd78f13
2 changed files with 2 additions and 2 deletions

View file

@ -7637,7 +7637,7 @@ interface SemanticTokensClientCapabilities {
* The client will send the `textDocument/semanticTokens/full/delta`
* request if the server provides a corresponding handler.
*/
delta?: boolean
delta?: boolean;
};
};

View file

@ -7745,7 +7745,7 @@ interface SemanticTokensClientCapabilities {
* The client will send the `textDocument/semanticTokens/full/delta`
* request if the server provides a corresponding handler.
*/
delta?: boolean
delta?: boolean;
};
};