asChildPod<TParent extends Object> method

ChildPod<TParent, T> asChildPod<TParent extends Object>()

Casts the ValueListenable to a ChildPod.

Throws a TypeError if the cast cannot be performed.

Implementation

ChildPod<TParent, T> asChildPod<TParent extends Object>() {
  return this as ChildPod<TParent, T>;
}