(
this: M,
)
| 56 | } |
| 57 | |
| 58 | getState<M extends Ayanami<State>>( |
| 59 | this: M, |
| 60 | ): M extends Ayanami<infer S> ? Readonly<S> : Readonly<State> { |
| 61 | return combineWithIkari(this).state.getState() as any |
| 62 | } |
| 63 | |
| 64 | getActions<M extends Ayanami<State>>( |
| 65 | this: M, |
no test coverage detected