kunkun/packages/api/src/ui/index.ts
Huakun Shen d3f18e6618
Feature: KV API (#43)
* feat: add kv store API for extensions

* feat: add kv api to @kksh/api package

* bump: @kksh/api to 0.0.47

* feat: add IKV type export to UI module

* feat: add delete api for KV API
2025-01-05 17:19:21 -05:00

53 lines
1.3 KiB
TypeScript

/* -------------------------------------------------------------------------- */
/* API */
/* -------------------------------------------------------------------------- */
// export {
// clipboard,
// dialog,
// // event,
// network,
// fs,
// notification,
// os,
// shell,
// sysInfo,
// path,
// log,
// updownload,
// fetch
// } from "tauri-api-adapter"
export { constructJarvisServerAPIWithPermissions } from "./server"
// export { type IUiWorkerServer, type IUiIframeServer } from "./server/ui"
export * from "./client" // all client types
// export { expose, wrap } from "@huakunshen/comlink"
// export { getWorkerApiClient, exposeApiToWorker, exposeApiToWindow } from "tauri-api-adapter"
/* -------------------------------------------------------------------------- */
/* API Interfaces */
/* -------------------------------------------------------------------------- */
export type {
IClipboard,
IDialog,
ILogger,
INetwork,
INotification,
IOs,
IPath,
// IShell,
ISystemInfo,
IUpdownload,
IFetch
} from "tauri-api-adapter"
export type {
ISystem,
IToast,
IUiWorker,
IUiIframe,
IDb,
IKV,
IFs,
IOpen,
IEvent
} from "../ui/client"
export type { IShell } from "./api/shell"