bitwarden-estensione-browser/src/background.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
209 B
TypeScript
Raw 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
});