File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
packages/devextreme-schematics/src/migrate-config-components Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 11import { Rule , Tree , SchematicContext } from '@angular-devkit/schematics' ;
2+ import type { HostRule } from './template-migrator' ;
23import { applyHostAwareTemplateMigrations , applyInlineComponentTemplateMigrations } from './template-migrator' ;
34import mapping from './mappings/deprecated-config-map.json' ;
45
@@ -55,7 +56,7 @@ export function migrateConfigComponents(options: Options = {}): Rule {
5556 Object . entries ( map ) . filter ( ( [ k ] ) => k !== '_hostSelector' )
5657 ) ;
5758 return { hostSelector, configMap } ;
58- } ) as import ( './template-migrator' ) . HostRule [ ] ;
59+ } ) as HostRule [ ] ;
5960
6061 // External HTML templates
6162 await applyHostAwareTemplateMigrations ( tree , {
You can’t perform that action at this time.
0 commit comments