You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vizality/renderer/src/api/index.js

24 lines
600 B

/**
* This gets the APIs from the vizality global and then exports them here so that they
* may be used by plugin developers in other forms if they wish, such as:
* @example
* ```
* import { Keybinds } from '@vizality/api';
* ```
*/
const { connections, settings, commands, keybinds, actions, notifications, popups, routes, i18n, rpc } = vizality.api;
export {
connections as Connections,
settings as Settings,
commands as Commands,
keybinds as Ketbinds,
actions as Actions,
notifications as Notifications,
popups as Popups,
routes as Routes,
i18n as I18n,
rpc as RPC
};