main.ts 290 B

12345678910111213
  1. /**
  2. * Copyright © 2016-2019 Threema GmbH (https://threema.ch/).
  3. *
  4. * This file is part of Threema Web.
  5. */
  6. import '@babel/polyfill';
  7. import {init as initComposeArea} from './compose_area';
  8. // Expose global functions
  9. (window as any).uiTests = {
  10. initComposeArea: initComposeArea,
  11. };