From 545ae3e482fdaf72cfd81c6bfd96705319dd2bf3 Mon Sep 17 00:00:00 2001 From: Burak Karatas Date: Fri, 14 May 2021 15:12:45 +0200 Subject: [PATCH] #192 Made some typings optional --- index.d.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/index.d.ts b/index.d.ts index b10364b8..1403254b 100644 --- a/index.d.ts +++ b/index.d.ts @@ -4,11 +4,11 @@ declare namespace AzureNotificationHub { hubName: string; senderID: string; tags: string[]; - channelName: string; - channelImportance: boolean; - channelShowBadge: boolean; - channelEnableLights: boolean; - channelEnableVibration: boolean; + channelName?: string; + channelImportance?: boolean; + channelShowBadge?: boolean; + channelEnableLights?: boolean; + channelEnableVibration?: boolean; } export interface TemplateRegistrationConfig extends RegistrationConfig {