You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Exact part im interested in is skipLazyLoading func, docs says it has one argument type of Attributes, and this does not relevant into real code (version 9.0.1 which are latest at the moment)
Class IntersectionObserverHooks has func skipLazyLoading which does not accept any arg, BUT it abstract parent do. Inheritance broken at some point, look this
Problem at SharedHooks class. I believed i will fix that with argmunets[0], but it does not helps as code where this func called even does not put 'attributes' argument into func
The text was updated successfully, but these errors were encountered:
Docs says this
Exact part im interested in is skipLazyLoading func, docs says it has one argument type of Attributes, and this does not relevant into real code (version 9.0.1 which are latest at the moment)
Class IntersectionObserverHooks has func skipLazyLoading which does not accept any arg, BUT it abstract parent do. Inheritance broken at some point, look this
IntersectionObserverHooks - skipLazyLoading(): boolean;
inherits
abstract SharedHooks - skipLazyLoading(): boolean;
inherits
abstract Hooks - abstracts skipLazyLoading(attributes: Attributes): boolean;
Problem at SharedHooks class. I believed i will fix that with argmunets[0], but it does not helps as code where this func called even does not put 'attributes' argument into func
The text was updated successfully, but these errors were encountered: