···19 updateBaseUrl,
20 };
21}
22+23+// This allows TypeScript to pick up the magic constants that's auto-generated by Forge's Webpack
24+// plugin that tells the Electron app where to look for the Webpack-bundled app code (depending on
25+// whether you're running in development or production).
26+declare const MAIN_WINDOW_WEBPACK_ENTRY: string;
27+declare const MAIN_WINDOW_PRELOAD_WEBPACK_ENTRY: string;
28+29+export { MAIN_WINDOW_WEBPACK_ENTRY, MAIN_WINDOW_PRELOAD_WEBPACK_ENTRY };