mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
Merge pull request #1017 from bluehymn/fixbug
fix: return type of container.find() #1016
This commit is contained in:
commit
65be165c1c
@ -189,7 +189,7 @@ export abstract class Container<ChildType extends Node> extends Node<
|
||||
* return node.getType() === 'Node' && node.getAbsoluteOpacity() < 1;
|
||||
* });
|
||||
*/
|
||||
find<ChildNode extends Node = Node>(selector): Collection<Node> {
|
||||
find<ChildNode extends Node = Node>(selector): Collection<ChildNode> {
|
||||
// protecting _generalFind to prevent user from accidentally adding
|
||||
// second argument and getting unexpected `findOne` result
|
||||
return this._generalFind<ChildNode>(selector, false);
|
||||
|
Loading…
Reference in New Issue
Block a user