bitwarden-estensione-browser/src/background.ts

7 lines
240 B
TypeScript
Raw Normal View History

import MainBackground from './background/main.background';
2017-12-07 02:19:06 +01:00
const bitwardenIsBackground = (window as any).bitwardenIsBackground = true;
const bitwardenMain = (window as any).bitwardenMain = new MainBackground();
2017-12-06 20:05:49 +01:00
2017-12-07 02:19:06 +01:00
bitwardenMain.bootstrap();