chore: add facades refactor: core module export refactor: inference plugin - deprecate function registering (#537) * refactor: revamp inference plugin as class - deprecate function registering * refactor: monitoring plugin - deprecate service registering (#538) refactor: revamp inference plugin as class - deprecate function registering chore: update import refactor: plugin revamp - model management chore: update build steps and remove experimental plugins refactor: remove pluggable electron chore: add sorting for conversations chore: build plugins for testing chore: consistent plugin directory name chore: docs chore: fix CI chore: update conversation prefix
41 lines
674 B
TypeScript
41 lines
674 B
TypeScript
/**
|
|
* @deprecated This object is deprecated and should not be used.
|
|
* Use individual functions instead.
|
|
*/
|
|
export { core, deleteFile, invokePluginFunc } from "./core";
|
|
|
|
/**
|
|
* Core module exports.
|
|
* @module
|
|
*/
|
|
export { downloadFile, executeOnMain } from "./core";
|
|
|
|
/**
|
|
* Events module exports.
|
|
* @module
|
|
*/
|
|
export { events } from "./events";
|
|
|
|
/**
|
|
* Events types exports.
|
|
* @module
|
|
*/
|
|
export {
|
|
EventName,
|
|
NewMessageRequest,
|
|
NewMessageResponse,
|
|
MessageHistory,
|
|
} from "./events";
|
|
|
|
/**
|
|
* Filesystem module exports.
|
|
* @module
|
|
*/
|
|
export { fs } from "./fs";
|
|
|
|
/**
|
|
* Plugin base module export.
|
|
* @module
|
|
*/
|
|
export { JanPlugin, PluginType } from "./plugin";
|