From 4a776910ec8b03130452e496e559d2220db443bb Mon Sep 17 00:00:00 2001 From: Anton Lavrenov Date: Tue, 23 Jun 2020 11:28:22 -0500 Subject: [PATCH] add Transform to types. close #933 --- 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 fa1a8fc8..6f7e9043 100644 --- a/src/index-types.d.ts +++ b/src/index-types.d.ts @@ -59,6 +59,9 @@ declare namespace Konva { export const Collection: typeof import('./Util').Collection; export type Collection = import('./Util').Collection; + export const Transform: typeof import('./Util').Transform; + export type Transform = import('./Util').Transform; + export const Util: typeof import('./Util').Util; export const Context: typeof import('./Context').Context;