From a2121443b19237af43e25321ec2c9e3b17cbeb3d Mon Sep 17 00:00:00 2001 From: Kamil Rojewski Date: Mon, 19 Dec 2016 08:19:44 +0100 Subject: [PATCH] Fix for noUnusedLocals in TypeScript --- src/simple-notifications.component.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/simple-notifications.component.ts b/src/simple-notifications.component.ts index 06fece5..baa4f4d 100644 --- a/src/simple-notifications.component.ts +++ b/src/simple-notifications.component.ts @@ -69,14 +69,14 @@ export class SimpleNotificationsComponent implements OnInit, OnDestroy { private preventDuplicates: boolean = false; // Sent values - private timeOut: number = 0; - private maxLength: number = 0; - private clickToClose: boolean = true; - private showProgressBar: boolean = true; - private pauseOnHover: boolean = true; - private theClass: string = ''; - private rtl: boolean = false; - private animate: 'fromRight' | 'fromLeft' | 'rotate' | 'scale' = 'fromRight'; + public timeOut: number = 0; + public maxLength: number = 0; + public clickToClose: boolean = true; + public showProgressBar: boolean = true; + public pauseOnHover: boolean = true; + public theClass: string = ''; + public rtl: boolean = false; + public animate: 'fromRight' | 'fromLeft' | 'rotate' | 'scale' = 'fromRight'; constructor(private _service: NotificationsService) {}