mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-05 10:13:00 +02:00
Co-authored-by: Jonas Kruckenberg <iterpre@protonmail.com> Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
55 lines
1.2 KiB
TypeScript
55 lines
1.2 KiB
TypeScript
// Copyright 2019-2022 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
/**
|
|
* The Tauri API allows you to interface with the backend layer.
|
|
*
|
|
* This module exposes all other modules as an object where the key is the module name, and the value is the module exports.
|
|
* @example
|
|
* ```typescript
|
|
* import { app, dialog, event, fs, globalShortcut } from '@tauri-apps/api'
|
|
* ```
|
|
* @module
|
|
*/
|
|
|
|
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 {
|
|
invoke,
|
|
app,
|
|
cli,
|
|
clipboard,
|
|
dialog,
|
|
event,
|
|
fs,
|
|
globalShortcut,
|
|
http,
|
|
notification,
|
|
path,
|
|
process,
|
|
shell,
|
|
tauri,
|
|
updater,
|
|
window,
|
|
os
|
|
}
|