index.ts 758 B

12345678910111213141516171819202122232425
  1. // Copyright 2019-2023 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 { event, window, path } from '@tauri-apps/api'
  11. * ```
  12. * @module
  13. */
  14. import * as app from './app'
  15. import * as event from './event'
  16. import * as core from './core'
  17. import * as window from './window'
  18. import * as path from './path'
  19. import * as dpi from './dpi'
  20. import * as tray from './tray'
  21. import * as menu from './menu'
  22. export { app, dpi, event, path, core, window, tray, menu }