(state: RenderState | null)
| 127 | |
| 128 | let RENDER_STATE: RenderState | null = null; |
| 129 | export function setRenderState(state: RenderState | null) { |
| 130 | RENDER_STATE = state; |
| 131 | } |
| 132 | |
| 133 | const oldVNodeHook = options[OptionsType.VNODE]; |
| 134 | options[OptionsType.VNODE] = (vnode) => { |