mirror of
https://github.com/flarum/core.git
synced 2025-07-24 10:11:43 +02:00
9 lines
183 B
TypeScript
9 lines
183 B
TypeScript
import Admin from './AdminApplication';
|
|
|
|
const app = new Admin();
|
|
|
|
// @ts-expect-error We need to do this for backwards compatibility purposes.
|
|
window.app = app;
|
|
|
|
export default app;
|