index.ts 492 B

12345678910111213141516
  1. // Copyright 2019-2021 Tauri Programme within The Commons Conservancy
  2. // SPDX-License-Identifier: Apache-2.0
  3. // SPDX-License-Identifier: MIT
  4. /**
  5. * The Tauri API allows you to interface with the backend layer.
  6. *
  7. * This module exposes all other modules as an object where the key is the module name, and the value is the module exports.
  8. * @example
  9. * ```typescript
  10. * import { app, dialog, event, fs, globalShortcut } from '@tauri-apps/api'
  11. * ```
  12. * @module
  13. */
  14. export * from './bundle'