Files
tauri/tooling/api/src/bundle.ts
2021-12-06 16:49:09 -03:00

45 lines
958 B
TypeScript

// Copyright 2019-2021 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
import 'regenerator-runtime/runtime'
import * as app from './app'
import * as cli from './cli'
import * as clipboard from './clipboard'
import * as dialog from './dialog'
import * as event from './event'
import * as fs from './fs'
import * as globalShortcut from './globalShortcut'
import * as http from './http'
import * as notification from './notification'
import * as path from './path'
import * as process from './process'
import * as shell from './shell'
import * as tauri from './tauri'
import * as updater from './updater'
import * as window from './window'
import * as os from './os'
/** @ignore */
const invoke = tauri.invoke
export {
app,
cli,
clipboard,
dialog,
event,
fs,
globalShortcut,
http,
notification,
path,
process,
shell,
tauri,
updater,
window,
os,
invoke
}