Skip to content

Commit

Permalink
Cleanup unused imports (bleenco#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
lqc authored and jkuri committed Jan 10, 2017
1 parent 6992551 commit eed357f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/directives/ng-file-drop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
SimpleChange
} from '@angular/core';
import { NgUploaderService } from '../services/ngx-uploader';
import { INgUploaderOptions, NgUploaderOptions, UploadedFile, UploadRejected } from '../classes';
import { NgUploaderOptions, UploadedFile, UploadRejected } from '../classes';

@Directive({
selector: '[ngFileDrop]'
Expand Down
2 changes: 1 addition & 1 deletion src/directives/ng-file-select.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
SimpleChange
} from '@angular/core';
import { NgUploaderService } from '../services/ngx-uploader';
import { INgUploaderOptions, NgUploaderOptions, UploadedFile, UploadRejected } from '../classes';
import { NgUploaderOptions, UploadedFile, UploadRejected } from '../classes';

@Directive({
selector: '[ngFileSelect]'
Expand Down
3 changes: 1 addition & 2 deletions src/services/ngx-uploader.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { EventEmitter, Injectable, OnChanges, Provider } from '@angular/core';
import { EventEmitter, Injectable, Provider } from '@angular/core';
import { NgUploaderOptions } from '../classes/ng-uploader-options.class';
import { UploadedFile } from '../classes/uploaded-file.class';
import { UploadRejected } from '../classes/upload-rejected.class';

@Injectable()
export class NgUploaderService {
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"sourceMap": false,
"noEmitHelpers": false,
"noImplicitAny": true,
"noUnusedLocals": true,
"declaration": true,
"strictNullChecks": true,
"skipLibCheck": true,
Expand Down

0 comments on commit eed357f

Please sign in to comment.