From 5ea12f9f11760c3102b09507fb5ed9a0dfd63e66 Mon Sep 17 00:00:00 2001 From: Dimitri Mitropoulos Date: Mon, 17 Aug 2020 15:54:08 -0400 Subject: [PATCH] adds types for Segment Integration Settings --- lib/index.d.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lib/index.d.ts b/lib/index.d.ts index d78c7a90..f6beeb5d 100644 --- a/lib/index.d.ts +++ b/lib/index.d.ts @@ -6,8 +6,14 @@ export declare namespace SegmentAnalytics { } interface IntegrationsSettings { - // TODO remove `any` - [key: string]: any; + addBundledMetadata: boolean; + apiHost?: string; + apiKey?: string; + crossDomainIdServers?: string[]; + deleteCrossDomainId?: boolean; + retryQueue: boolean; + saveCrossDomainIdInLocalStorage: boolean; + unbundledIntegrations: any[]; } interface CookieOptions {