| 96 | } |
| 97 | |
| 98 | interface InnerContext<S = {}> extends BaseContext<S> { |
| 99 | // Actions with function type context will always invoke current component's reload. |
| 100 | // f -> function, o -> outer, c -> class, u -> useModel |
| 101 | type?: 'f' | 'o' | 'c' | 'u' |
| 102 | __hash?: string |
| 103 | } |
| 104 | |
| 105 | type Context<S = {}> = InnerContext<S> & { |
| 106 | next: Function |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…