@typescript-deploys/pr-build 4.7.0-pr-48264-3 → 4.7.0-pr-48294-7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/protocol.d.ts +0 -4
- package/lib/tsc.js +161 -140
- package/lib/tsserver.js +259 -426
- package/lib/tsserverlibrary.d.ts +1 -10
- package/lib/tsserverlibrary.js +259 -426
- package/lib/typescript.js +255 -311
- package/lib/typescriptServices.js +255 -311
- package/lib/typingsInstaller.js +171 -163
- package/package.json +1 -1
package/lib/protocol.d.ts
CHANGED
|
@@ -42,7 +42,6 @@ declare namespace ts.server.protocol {
|
|
|
42
42
|
Rename = "rename",
|
|
43
43
|
Saveto = "saveto",
|
|
44
44
|
SignatureHelp = "signatureHelp",
|
|
45
|
-
SourceDefinitionAndBoundSpan = "sourceDefinitionAndBoundSpan",
|
|
46
45
|
Status = "status",
|
|
47
46
|
TypeDefinition = "typeDefinition",
|
|
48
47
|
ProjectInfo = "projectInfo",
|
|
@@ -662,9 +661,6 @@ declare namespace ts.server.protocol {
|
|
|
662
661
|
interface DefinitionAndBoundSpanRequest extends FileLocationRequest {
|
|
663
662
|
readonly command: CommandTypes.DefinitionAndBoundSpan;
|
|
664
663
|
}
|
|
665
|
-
interface SourceDefinitionAndBoundSpanRequest extends FileLocationRequest {
|
|
666
|
-
readonly command: CommandTypes.SourceDefinitionAndBoundSpan;
|
|
667
|
-
}
|
|
668
664
|
interface DefinitionAndBoundSpanResponse extends Response {
|
|
669
665
|
readonly body: DefinitionInfoAndBoundSpan;
|
|
670
666
|
}
|