From 1ebb102404ccff620076c358d5cda61affe11ef6 Mon Sep 17 00:00:00 2001 From: Zak Holt Date: Wed, 27 Mar 2019 11:45:47 -0400 Subject: [PATCH] update static type def Types are found here https://github.com/pusher/pusher-js/blob/7837cf20fab8797bba7dbc5ceb7b088a87244832/src/core/pusher.ts#L25 --- types/pusher-js/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/pusher-js/index.d.ts b/types/pusher-js/index.d.ts index f73a84ee52..a09c352386 100644 --- a/types/pusher-js/index.d.ts +++ b/types/pusher-js/index.d.ts @@ -8,6 +8,8 @@ declare namespace pusher { interface PusherStatic { logToConsole: boolean; log: (msg: string) => void; + instances: Pusher[]; + isReady: boolean; new (apiKey: string, config?: Config): Pusher; }