interface HMRRuntime {
    createRecord: ((id: string, initialDef: HMRComponent) => boolean);
    reload: ((id: string, newComp: HMRComponent) => void);
    rerender: ((id: string, newRender?: Function) => void);
}

Properties

createRecord: ((id: string, initialDef: HMRComponent) => boolean)
reload: ((id: string, newComp: HMRComponent) => void)
rerender: ((id: string, newRender?: Function) => void)