typescript fixes. close #1866
Some checks failed
Test Browser / build (23.x) (push) Has been cancelled
Test NodeJS / build (23.x) (push) Has been cancelled

This commit is contained in:
Anton Lavrevov 2024-12-23 14:16:19 -05:00
parent 6e28a2a93b
commit 9e790a36ee
2 changed files with 3 additions and 2 deletions

View File

@ -198,7 +198,8 @@ export abstract class Node<Config extends NodeConfig = NodeConfig> {
// for transform the cache can be NOT empty
// but we still need to recalculate it if it is dirty
const isTransform = attr === TRANSFORM || attr === ABSOLUTE_TRANSFORM;
const invalid = cache === undefined || (isTransform && cache.dirty === true);
const invalid =
cache === undefined || (isTransform && cache.dirty === true);
// if not cached, we need to set it using the private getter method.
if (invalid) {

View File

@ -1,6 +1,6 @@
export interface GetSet<Type, This> {
(): Type;
(v: Type): This;
(v: Type | null | undefined): This;
}
export interface Vector2d {