Skip to content

Commit 0dd88d4

Browse files
authored
Merge pull request #124 from krojew/master
Fix for noUnusedLocals in TypeScript
2 parents 92fbca9 + 0256686 commit 0dd88d4

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/simple-notifications.component.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ export class SimpleNotificationsComponent implements OnInit, OnDestroy {
6969
private preventDuplicates: boolean = false;
7070

7171
// Sent values
72-
private timeOut: number = 0;
73-
private maxLength: number = 0;
74-
private clickToClose: boolean = true;
75-
private showProgressBar: boolean = true;
76-
private pauseOnHover: boolean = true;
77-
private theClass: string = '';
78-
private rtl: boolean = false;
79-
private animate: 'fromRight' | 'fromLeft' | 'rotate' | 'scale' = 'fromRight';
72+
public timeOut: number = 0;
73+
public maxLength: number = 0;
74+
public clickToClose: boolean = true;
75+
public showProgressBar: boolean = true;
76+
public pauseOnHover: boolean = true;
77+
public theClass: string = '';
78+
public rtl: boolean = false;
79+
public animate: 'fromRight' | 'fromLeft' | 'rotate' | 'scale' = 'fromRight';
8080

8181
constructor(private _service: NotificationsService) {}
8282

0 commit comments

Comments
 (0)