File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -2,20 +2,18 @@ import {CommonModule} from '@angular/common';
22import { NgModule , ModuleWithProviders } from '@angular/core' ;
33import { MatProgressBarModule } from '@angular/material' ;
44
5- import { LibComponent } from './component/lib.component' ;
65import { PasswordStrengthComponent } from './component/password-strength/password-strength.component' ;
76
87// Export module's public API
9- export { LibComponent } from './component/lib.component' ;
108export { PasswordStrengthComponent } from './component/password-strength/password-strength.component' ;
119
1210@NgModule ( {
1311 imports : [
1412 CommonModule ,
1513 MatProgressBarModule
1614 ] ,
17- exports : [ LibComponent , PasswordStrengthComponent ] ,
18- declarations : [ LibComponent , PasswordStrengthComponent ]
15+ exports : [ PasswordStrengthComponent ] ,
16+ declarations : [ PasswordStrengthComponent ]
1917} )
2018export class NgxMaterialPasswordStrengthModule {
2119 static forRoot ( ) : ModuleWithProviders {
You can’t perform that action at this time.
0 commit comments