bundle.ts 627 B

123456789101112131415161718192021222324252627282930
  1. import 'regenerator-runtime/runtime'
  2. import * as app from './app'
  3. import * as cli from './cli'
  4. import * as dialog from './dialog'
  5. import * as event from './event'
  6. import * as updater from './updater'
  7. import * as fs from './fs'
  8. import * as path from './path'
  9. import * as http from './http'
  10. import * as shell from './shell'
  11. import * as tauri from './tauri'
  12. import * as window from './window'
  13. import * as notification from './notification'
  14. import * as globalShortcut from './globalShortcut'
  15. export {
  16. app,
  17. cli,
  18. dialog,
  19. event,
  20. updater,
  21. fs,
  22. path,
  23. http,
  24. shell,
  25. tauri,
  26. window,
  27. notification,
  28. globalShortcut
  29. }