@angular/language-service 5.2.7 → 5.2.11
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/bundles/language-service.umd.js +78 -25
- package/bundles/language-service.umd.js.map +1 -1
- package/bundles/language-service.umd.min.js +9 -9
- package/bundles/language-service.umd.min.js.map +1 -1
- package/esm2015/language-service.js +2 -2
- package/esm2015/language-service.js.map +1 -1
- package/esm5/language-service.js +2 -2
- package/esm5/language-service.js.map +1 -1
- package/package.json +1 -1
- package/src/types.d.ts +2 -2
package/package.json
CHANGED
package/src/types.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ export interface TemplateSource {
|
|
|
23
23
|
readonly source: string;
|
|
24
24
|
/**
|
|
25
25
|
* The version of the source. As files are modified the version should change. That is, if the
|
|
26
|
-
* `LanguageService` requesting template
|
|
26
|
+
* `LanguageService` requesting template information for a source file and that file has changed
|
|
27
27
|
* since the last time the host was asked for the file then this version string should be
|
|
28
28
|
* different. No assumptions are made about the format of this string.
|
|
29
29
|
*
|
|
@@ -274,7 +274,7 @@ export interface HoverTextSection {
|
|
|
274
274
|
readonly language?: string;
|
|
275
275
|
}
|
|
276
276
|
/**
|
|
277
|
-
* Hover
|
|
277
|
+
* Hover information for a symbol at the hover location.
|
|
278
278
|
*/
|
|
279
279
|
export interface Hover {
|
|
280
280
|
/**
|