fixed type definitions for find() and findOne()

This commit is contained in:
Thomas Röggla 2018-04-17 14:43:34 +02:00
parent 7601be03fc
commit e96889677c

4
konva.d.ts vendored
View File

@ -342,8 +342,8 @@ declare namespace Konva {
clipFunc(): (ctx: CanvasRenderingContext2D) => void;
clipFunc(ctx: CanvasRenderingContext2D | undefined | null): void;
destroyChildren(): void;
find(selector?: string | ((Node) => boolean)): Collection;
findOne<T extends Node>(selector: string | ((Node) => boolean)): T;
find(selector?: string | ((node: Node) => boolean)): Collection;
findOne<T extends Node>(selector: string | ((node: Node) => boolean)): T;
getAllIntersections(pos: Vector2d): Shape[];
hasChildren(): boolean;
removeChildren(): void;