UNPKG

@steambrew/client

Version:
28 lines (27 loc) 934 B
/// <reference types="react" /> 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 declare const errorBoundaryHook: ErrorBoundaryHook; export declare const routerHook: RouterHook; export declare const toaster: Toaster; export interface Plugin { version?: string; icon: JSX.Element; content?: JSX.Element; onDismount?(): void; alwaysRender?: boolean; titleView?: JSX.Element; } export type DefinePluginFn = () => Plugin; export declare const definePlugin: (fn: DefinePluginFn) => DefinePluginFn;