@steambrew/client
Version:
A support library for creating plugins with Millennium.
21 lines (20 loc) • 523 B
JavaScript
// export * from './deck-libs';
export * from './custom-components';
export * from './custom-hooks';
export * from './components';
export * from './deck-hooks';
export * from './modules';
export * from './globals';
export * from './webpack';
export * from './utils';
export * from './class-mapper';
export * from './api';
/**
* @deprecated use @decky/api instead
*/
export const definePlugin = (fn) => {
return (...args) => {
// TODO: Maybe wrap this
return fn(...args);
};
};