Files
tauri/tooling/api/src/index.ts
Amr Bashir 77b9a508a4 feat(api): add Image class (#9042)
* feat(api): add `Image` class

* clippy

* license headers

* small cleanup

* fixes

* code review

* readd from_png_bytes and from_ico_bytes

---------

Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
2024-03-03 04:31:08 +02:00

41 lines
930 B
TypeScript

// Copyright 2019-2024 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 { event, window, path } from '@tauri-apps/api'
* ```
* @module
*/
import * as app from './app'
import * as event from './event'
import * as core from './core'
import * as window from './window'
import * as webview from './webview'
import * as webviewWindow from './webviewWindow'
import * as path from './path'
import * as dpi from './dpi'
import * as tray from './tray'
import * as menu from './menu'
import * as image from './image'
export {
app,
dpi,
event,
path,
core,
window,
webview,
webviewWindow,
tray,
menu,
image
}