Newer
Older
Import / research / reflection / vue / my-project / typings / vue-hot-reload-api / index.d.ts
@John John on 29 Dec 2020 297 bytes bulk import from macbookpro checkouts
declare module 'vue-hot-reload-api' {
  import Vue, { Component } from 'vue';
  export function install(Vue): void;
  export function compatible(): boolean;
  export function createRecord(id: string, component: Component): void;
  export function reload(id: string, component: Component): void;
}