From 726d02e78f2548975b4c2a7c01ca385894906eb7 Mon Sep 17 00:00:00 2001 From: Ari Lazier Date: Tue, 20 Jun 2017 10:13:33 -0700 Subject: [PATCH] Make ssl SyncConfiguration parameters optional --- lib/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/index.d.ts b/lib/index.d.ts index 4eb137da..9eb6817c 100644 --- a/lib/index.d.ts +++ b/lib/index.d.ts @@ -257,8 +257,8 @@ declare namespace Realm.Sync { interface SyncConfiguration { user: User; url: string; - validate_ssl: boolean; - ssl_trust_certificate_path: string; + validate_ssl?: boolean; + ssl_trust_certificate_path?: string; } /**