Fix
All checks were successful
Lint / lint (push) Successful in 14s

This commit is contained in:
Julien Valverdé
2025-04-13 17:06:20 +02:00
parent 574136e161
commit 0f761524fd

View File

@@ -21,6 +21,7 @@ export abstract class ReffuseNamespace<R> {
constructor() { constructor() {
this.SubscribeRefs = this.SubscribeRefs.bind(this as any) as any this.SubscribeRefs = this.SubscribeRefs.bind(this as any) as any
this.RefState = this.RefState.bind(this as any) as any this.RefState = this.RefState.bind(this as any) as any
this.SubscribeStream = this.SubscribeStream.bind(this as any) as any
} }