UNPKG

@steambrew/client

Version:
23 lines (22 loc) 734 B
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 './millennium-api'; import ErrorBoundaryHook from './hooks/error-boundary-hook'; import RouterHook from './hooks/router/router-hook'; import Toaster from './hooks/toaster-hook'; export const errorBoundaryHook = new ErrorBoundaryHook(); export const routerHook = new RouterHook(); export const toaster = new Toaster(); export const definePlugin = (fn) => { return (...args) => { // TODO: Maybe wrap this return fn(...args); }; };