From b11c4ebeb6f22ff9282de0dd381304aa72782315 Mon Sep 17 00:00:00 2001 From: emma bishop Date: Tue, 12 Oct 2021 17:34:59 -0400 Subject: [PATCH] DeckProps property viewState can be map of view id strings to different view states (#216) --- deck.gl__core/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deck.gl__core/index.d.ts b/deck.gl__core/index.d.ts index 25f2806..8dcf92b 100644 --- a/deck.gl__core/index.d.ts +++ b/deck.gl__core/index.d.ts @@ -2380,7 +2380,7 @@ declare module "@deck.gl/core/lib/deck" { }) => boolean; getCursor: (interactiveState: InteractiveState) => string; views: View[]; - viewState: ViewStateProps; + viewState: ViewStateProps | { [key: string]: ViewStateProps }; initialViewState: InitialViewStateProps; controller: null | Controller | ControllerOptions | boolean; effects: Effect[];