mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2025-01-08 01:47:19 +03:00
13 lines
193 B
TypeScript
13 lines
193 B
TypeScript
|
import '../i18n';
|
||
|
import App from '../splash.svelte';
|
||
|
|
||
|
declare const Neutralino;
|
||
|
|
||
|
Neutralino.init();
|
||
|
|
||
|
const app = new App({
|
||
|
target: document.getElementById('app')!
|
||
|
});
|
||
|
|
||
|
export default app;
|