WIP - quickinfo

This commit is contained in:
Vladimir Matveev
2016-06-10 16:56:15 -07:00
parent 81905cd29e
commit c14398317a
2 changed files with 16 additions and 8 deletions

View File

@@ -147,12 +147,17 @@ declare namespace ts.server.protocol {
/**
* The line number for the request (1-based).
*/
line: number;
line?: number;
/**
* The character offset (on the line) for the request (1-based).
*/
offset: number;
offset?: number;
/**
* Position (can be specified instead of line/offset pair)
*/
position?: number;
}
/**