有没有一种从 xState 中的状态获取 child 的 TypeScript 方法?
Is there a TypeScript way of getting a child from a state in xState?
目前我是这样做的:
useActor<SomeInterpreter>((state as any).children.SomeChild);
因为我不是 TypeScript 中的“any”的忠实粉丝,还有其他方法吗?
根据 David Khourshid 的说法,在发表此评论时这是不可能的。他们会在未来添加更好的方法。
目前我是这样做的:
useActor<SomeInterpreter>((state as any).children.SomeChild);
因为我不是 TypeScript 中的“any”的忠实粉丝,还有其他方法吗?
根据 David Khourshid 的说法,在发表此评论时这是不可能的。他们会在未来添加更好的方法。