Skip to content

Commit

Permalink
fix(ngx-material-password-strength): removed unwanted imports
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyNahas committed Apr 22, 2018
1 parent b1cb12a commit d7c2200
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/module/ngx-material-password-strength.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,18 @@ import {CommonModule} from '@angular/common';
import {NgModule, ModuleWithProviders} from '@angular/core';
import {MatProgressBarModule} from '@angular/material';

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

// Export module's public API
export {LibComponent} from './component/lib.component';
export {PasswordStrengthComponent} from './component/password-strength/password-strength.component';

@NgModule({
imports: [
CommonModule,
MatProgressBarModule
],
exports: [LibComponent, PasswordStrengthComponent],
declarations: [LibComponent, PasswordStrengthComponent]
exports: [PasswordStrengthComponent],
declarations: [PasswordStrengthComponent]
})
export class NgxMaterialPasswordStrengthModule {
static forRoot(): ModuleWithProviders {
Expand Down

0 comments on commit d7c2200

Please sign in to comment.