@typescript-deploys/pr-build 4.7.0-pr-48861-7 → 4.7.0-pr-48784-10
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 +1 -0
- package/lib/tsc.js +925 -533
- package/lib/tsserver.js +1078 -635
- package/lib/tsserverlibrary.d.ts +13 -1
- package/lib/tsserverlibrary.js +1078 -635
- package/lib/typescript.d.ts +12 -1
- package/lib/typescript.js +1071 -628
- package/lib/typescriptServices.d.ts +12 -1
- package/lib/typescriptServices.js +1071 -628
- package/lib/typingsInstaller.js +968 -593
- package/package.json +1 -1
package/lib/protocol.d.ts
CHANGED
|
@@ -1825,6 +1825,7 @@ declare namespace ts.server.protocol {
|
|
|
1825
1825
|
body?: CompletionInfo;
|
|
1826
1826
|
}
|
|
1827
1827
|
interface CompletionInfo {
|
|
1828
|
+
readonly flags?: number;
|
|
1828
1829
|
readonly isGlobalCompletion: boolean;
|
|
1829
1830
|
readonly isMemberCompletion: boolean;
|
|
1830
1831
|
readonly isNewIdentifierLocation: boolean;
|