Files
tauri/api/src/bundle.ts
david 6d70c8e1e2 feat(updater): Alpha version (#643)
Co-authored-by: Rajiv Shah <rajivshah1@icloud.com>
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
Co-authored-by: nothingismagick <denjell@mailscript.com>
Co-authored-by: Laegel <valentin.chouaf@laposte.net>
2021-04-05 14:51:17 -03:00

29 lines
591 B
TypeScript

import 'regenerator-runtime/runtime'
import * as cli from './cli'
import * as dialog from './dialog'
import * as event from './event'
import * as updater from './updater'
import * as fs from './fs'
import * as path from './path'
import * as http from './http'
import * as shell from './shell'
import * as tauri from './tauri'
import * as window from './window'
import * as notification from './notification'
import * as globalShortcut from './globalShortcut'
export {
cli,
dialog,
event,
updater,
fs,
path,
http,
shell,
tauri,
window,
notification,
globalShortcut
}