bitwarden-estensione-browser/src/background.ts

7 lines
209 B
TypeScript
Raw Permalink Normal View History

import MainBackground from './background/main.background';
2017-12-07 02:19:06 +01:00
const bitwardenMain = (window as any).bitwardenMain = new MainBackground();
bitwardenMain.bootstrap().then(() => {
// Finished bootstrapping
});