From 861681b6af18562e0d2c624b25f70ef7c3a5901f Mon Sep 17 00:00:00 2001 From: Adam Kohring Date: Mon, 3 Feb 2020 12:03:31 -0500 Subject: [PATCH] Added Context to index-types.d.ts --- src/index-types.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/index-types.d.ts b/src/index-types.d.ts index c50d421e..006f4fed 100644 --- a/src/index-types.d.ts +++ b/src/index-types.d.ts @@ -60,6 +60,9 @@ declare namespace Konva { export const Collection: typeof import('./Util').Collection; export type Collection = import('./Util').Collection; export const Util: typeof import('./Util').Util; + + export const Context: typeof import('./Context').Context; + export type Context = import('./Context').Context; export const Stage: typeof import('./Stage').Stage; export type Stage = import('./Stage').Stage;