Skip to content

Commit d7c2200

Browse files
committed
fix(ngx-material-password-strength): removed unwanted imports
1 parent b1cb12a commit d7c2200

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/module/ngx-material-password-strength.module.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,18 @@ import {CommonModule} from '@angular/common';
22
import {NgModule, ModuleWithProviders} from '@angular/core';
33
import {MatProgressBarModule} from '@angular/material';
44

5-
import {LibComponent} from './component/lib.component';
65
import {PasswordStrengthComponent} from './component/password-strength/password-strength.component';
76

87
// Export module's public API
9-
export {LibComponent} from './component/lib.component';
108
export {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
})
2018
export class NgxMaterialPasswordStrengthModule {
2119
static forRoot(): ModuleWithProviders {

0 commit comments

Comments
 (0)