File tree Expand file tree Collapse file tree 3 files changed +7
-12
lines changed
Expand file tree Collapse file tree 3 files changed +7
-12
lines changed Original file line number Diff line number Diff line change 11[
2- [
3- " packages/core/src/linker/component_factory_resolver.ts" ,
4- " packages/core/src/linker/component_factory.ts" ,
5- " packages/core/src/linker/ng_module_factory.ts"
6- ],
72 [
83 " packages/core/src/metadata/directives.ts" ,
94 " packages/core/src/render3/jit/directive.ts"
Original file line number Diff line number Diff line change 66 * found in the LICENSE file at https://angular.dev/license
77 */
88
9- import { ChangeDetectorRef } from '../change_detection/change_detection' ;
10- import { Injector } from '../di/injector' ;
11- import { EnvironmentInjector } from '../di/r3_injector' ;
9+ import type { ChangeDetectorRef } from '../change_detection/change_detection' ;
10+ import type { Injector } from '../di/injector' ;
11+ import type { EnvironmentInjector } from '../di/r3_injector' ;
1212import { Type } from '../interface/type' ;
1313
14- import { ElementRef } from './element_ref' ;
15- import { NgModuleRef } from './ng_module_factory' ;
16- import { ViewRef } from './view_ref' ;
14+ import type { ElementRef } from './element_ref' ;
15+ import type { NgModuleRef } from './ng_module_factory' ;
16+ import type { ViewRef } from './view_ref' ;
1717
1818/**
1919 * Represents a component created by a `ComponentFactory`.
Original file line number Diff line number Diff line change 99import { Type } from '../interface/type' ;
1010import { stringify } from '../util/stringify' ;
1111
12- import { ComponentFactory } from './component_factory' ;
12+ import type { ComponentFactory } from './component_factory' ;
1313
1414class _NullComponentFactoryResolver implements ComponentFactoryResolver {
1515 resolveComponentFactory < T > ( component : { new ( ...args : any [ ] ) : T } ) : ComponentFactory < T > {
You can’t perform that action at this time.
0 commit comments