bitwarden-estensione-browser/src/background.ts

10 lines
320 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
// tslint:disable-next-line:no-var-requires
require('./scripts/analytics.js');
2017-12-06 20:05:49 +01:00
2017-12-07 02:19:06 +01:00
bitwardenMain.bootstrap();