/** * A library for adding core ToDesktop native functionality to your app. * * @remarks * This package exposes a number of core APIs used to add native functionality * to your web application using ToDesktop. * * @see {@link https://docs.todesktop.com} * @experimental * @public * @packageDocumentation */ export * as app from "./app/index.js"; export * as newApp from "./app/newApp.js"; export * as appMenu from "./appMenu.js"; export * as contextMenu from "./contextMenu.js"; export * as electronUpdater from "./electronUpdater.js"; export * as todesktopUpdater from "./todesktopUpdater.js"; export * as globalShortcut from "./globalShortcut.js"; export * as menu from "./menu.js"; export * as menuBar from "./menuBar.js"; export * as menuItem from "./menuItem.js"; export * as nativeImage from "./nativeImage.js"; export * as nativeTheme from "./nativeTheme.js"; export * as nativeWindow from "./nativeWindow.js"; export * as notification from "./notification.js"; export * as object from "./object.js"; export * as performance from "./performance.js"; export * as platform from "./platform/index.js"; export * as powerMonitor from "./powerMonitor.js"; export * as pushNotifications from "./pushNotifications.js"; export * as safeStorage from "./safeStorage.js"; export * as screen from "./screen.js"; export * as systemPreferences from "./systemPreferences.js"; export * as tray from "./tray.js"; export * as views from "./views.js"; export * as webContents from "./webContents.js"; export * as session from "./session.js"; export * as clipboard from "./clipboard.js"; export * as findInPageView from "./findInPageView.js";