From 91547d7a8a24a15e7374ee630d51caa151b67f5d Mon Sep 17 00:00:00 2001 From: wujing Date: Wed, 18 Nov 2020 15:27:47 +0800 Subject: [PATCH] fix: return type of container.find() #1016 --- src/Container.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Container.ts b/src/Container.ts index 6c38585d..f020059f 100644 --- a/src/Container.ts +++ b/src/Container.ts @@ -189,7 +189,7 @@ export abstract class Container extends Node< * return node.getType() === 'Node' && node.getAbsoluteOpacity() < 1; * }); */ - find(selector): Collection { + find(selector): Collection { // protecting _generalFind to prevent user from accidentally adding // second argument and getting unexpected `findOne` result return this._generalFind(selector, false);