UNPKG

@dr.pogodin/react-utils

Version:

Collection of generic ReactJS components and utils

15 lines (14 loc) 700 B
import themedImpl, { COMPOSE, PRIORITY, type Theme, ThemeProvider } from '@dr.pogodin/react-themes'; import config from './config'; import * as isomorphy from './isomorphy'; import time from './time'; import * as webpack from './webpack'; export { assertEmptyObject, type Listener, type ObjectKey, Barrier, Cached, Emitter, Semaphore, withRetries, } from '@dr.pogodin/js-utils'; export { getSsrContext } from './globalState'; export { default as splitComponent } from './splitComponent'; type ThemedT = typeof themedImpl & { COMPOSE: typeof COMPOSE; PRIORITY: typeof PRIORITY; }; declare const themed: ThemedT; export { type Theme, config, isomorphy, themed, ThemeProvider, time, webpack, };