@angular-eslint/bundled-angular-compiler 13.2.1 → 14.0.0-alpha.0

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/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from '@angular/compiler';
2
- export type { Comment, Node as R3_Node, } from '@angular/compiler/src/render3/r3_ast';
3
- export type { Message } from '@angular/compiler/src/i18n/i18n_ast';
2
+ import type { MessageBundle, ParsedTemplate } from '@angular/compiler';
3
+ export declare type Comment = Required<ParsedTemplate>['commentNodes'][number];
4
+ export declare type Message = ReturnType<MessageBundle['getMessages']>[number];