mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-20 05:29:17 +00:00

* bump: valibot to ^1.0.0-beta.10 * refactor: re-export some API interfaces in root index.ts
24 lines
497 B
TypeScript
24 lines
497 B
TypeScript
export {
|
|
version,
|
|
breakingChangesVersionCheckpoints,
|
|
isVersionBetween,
|
|
isCompatible
|
|
} from "./version"
|
|
export { constructExtensionSupportDir } from "./api/server/path"
|
|
export { constructJarvisServerAPIWithPermissions } from "./api/server"
|
|
export * from "./constants"
|
|
export { TauriShellStdio } from "./api/shell"
|
|
export type {
|
|
IClipboard,
|
|
IDialog,
|
|
ILogger,
|
|
INetwork,
|
|
INotification,
|
|
IOs,
|
|
IPath,
|
|
ISystemInfo,
|
|
IUpdownload,
|
|
IFetch
|
|
} from "tauri-api-adapter"
|
|
export * from "./api/client"
|