mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 06:13:38 +00:00
7 lines
209 B
TypeScript
7 lines
209 B
TypeScript
import MainBackground from './background/main.background';
|
|
|
|
const bitwardenMain = (window as any).bitwardenMain = new MainBackground();
|
|
bitwardenMain.bootstrap().then(() => {
|
|
// Finished bootstrapping
|
|
});
|