diff options
Diffstat (limited to 'src/main/kotlin/pl/treksoft/kvision/HMR.kt')
-rw-r--r-- | src/main/kotlin/pl/treksoft/kvision/HMR.kt | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/src/main/kotlin/pl/treksoft/kvision/HMR.kt b/src/main/kotlin/pl/treksoft/kvision/HMR.kt deleted file mode 100644 index 6fb9dfed..00000000 --- a/src/main/kotlin/pl/treksoft/kvision/HMR.kt +++ /dev/null @@ -1,34 +0,0 @@ -/** - * @author Robert Jaros - */ -package pl.treksoft.kvision - -/** - * Helper variable for Hot Module Replacement (HMR). - */ -external val module: Module - -/** - * Helper interface for Hot Module Replacement (HMR). - */ -external interface Module { - val hot: Hot? -} - -/** - * Helper interface for Hot Module Replacement (HMR). - */ -external interface Hot { - val data: dynamic - - fun accept() - fun accept(dependency: String, callback: () -> Unit) - fun accept(dependencies: Array<String>, callback: (updated: Array<String>) -> Unit) - - fun dispose(callback: (data: dynamic) -> Unit) -} - -/** - * External function for loading CommonJS modules. - */ -external fun require(name: String): dynamic |