@angular/language-service 15.1.0-next.1 → 15.1.0-next.2
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/api.d.ts +3 -3
- package/bundles/language-service.js +349 -292
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ export interface PluginConfig {
|
|
|
24
24
|
*/
|
|
25
25
|
forceStrictTemplates?: true;
|
|
26
26
|
}
|
|
27
|
-
export
|
|
27
|
+
export type GetTcbResponse = {
|
|
28
28
|
/**
|
|
29
29
|
* The filename of the SourceFile this typecheck block belongs to.
|
|
30
30
|
* The filename is entirely opaque and unstable, useful only for debugging
|
|
@@ -42,8 +42,8 @@ export declare type GetTcbResponse = {
|
|
|
42
42
|
*/
|
|
43
43
|
selections: ts.TextSpan[];
|
|
44
44
|
};
|
|
45
|
-
export
|
|
46
|
-
export
|
|
45
|
+
export type GetComponentLocationsForTemplateResponse = ts.DocumentSpan[];
|
|
46
|
+
export type GetTemplateLocationForComponentResponse = ts.DocumentSpan | undefined;
|
|
47
47
|
/**
|
|
48
48
|
* `NgLanguageService` describes an instance of an Angular language service,
|
|
49
49
|
* whose API surface is a strict superset of TypeScript's language service.
|