1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- // 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
- }
|