mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-01 10:01:07 +02:00
45 lines
958 B
TypeScript
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
|
|
}
|