Files
tauri/api/src/bundle.ts
2021-02-14 17:34:23 -03:00

27 lines
543 B
TypeScript

import 'regenerator-runtime/runtime'
import * as cli from './cli'
import * as dialog from './dialog'
import * as event from './event'
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,
fs,
path,
http,
shell,
tauri,
window,
notification,
globalShortcut
}