/** * Browser shims for Node.js modules. * * App shells should import and install these shims in their entry point * (main.tsx) before any other imports: * * ```ts * import "@burdenoff/fe-libs/shared/shims/assert"; * import processShim from "@burdenoff/fe-libs/shared/shims/process"; * ``` * * For Vite resolve aliases, use the paths exported here: * * ```ts * import { getShimPaths } from "@burdenoff/fe-libs/shared/shims"; * ``` * * @module @burdenoff/fe-libs/shared/shims */ export { assert } from './assert'; export { default as processShim } from './process'; export { useSyncExternalStoreWithSelector } from './use-sync-external-store-with-selector'; export { useSyncExternalStore } from './use-sync-external-store-shim'; export * as utilShim from './util'; //# sourceMappingURL=index.d.ts.map