12 lines
439 B
TypeScript
Raw Normal View History

2020-10-01 10:56:22 +02:00
/* preloaded script, init hook will be called before the loader will be executed */
declare global {
interface Window {
__native_client_init_hook: () => void;
__native_client_init_shared: (webpackRequire: any) => void;
}
}
2020-12-02 18:08:49 +01:00
window.__native_client_init_hook = () => require("../../../../renderer/index");
2020-10-01 10:56:22 +02:00
window.__native_client_init_shared = webpackRequire => window["shared-require"] = webpackRequire;
export = {};