mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00

* 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
53 lines
1.3 KiB
TypeScript
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"
|