Merge pull request #493 from halilibrahim/master

Fixes #491
This commit is contained in:
Anton Lavrenov 2018-11-14 10:16:51 -05:00 committed by GitHub
commit 3cfb576812
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
konva.d.ts vendored
View File

@ -459,7 +459,7 @@ declare namespace Konva {
clipY(): number;
clipY(clipY: number | undefined | null): this;
clipFunc(): (ctx: CanvasRenderingContext2D) => void;
clipFunc(ctx: CanvasRenderingContext2D | undefined | null): void;
clipFunc(clipFunc: (ctx: CanvasRenderingContext2D) => void): void;
destroyChildren(): void;
find<T extends Node = Node>(selector?: string | ((node: Node) => boolean)): Collection<T>;
findOne<T extends Node>(selector: string | ((node: Node) => boolean)): T;