UNPKG

shelving

Version:

Toolkit for using data in JavaScript.

20 lines (19 loc) 1.02 kB
/** * This module exports almost everything in Shelving except... * - Modules that use peer dependencies, like `shelving/react` and `shelving/firebase/client` * - Modules that are for internal use, like `shelving/test` */ export * from "./api/index.js"; export * from "./db/index.js"; export * from "./error/index.js"; // export * from "./firestore/client/index.js"; // Not exported. // export * from "./firestore/lite/index.js"; // Not exported. // export * from "./firestore/server/index.js"; // Not exported. // export * from "./markup/index.js"; // Not exported — `shelving/markup` now compiles JSX and imports React's JSX runtime. // export * from "./react/index.js"; // Not exported. export * from "./schema/index.js"; // export * from "./ui/index.js"; // Not exported — shelving/ui requires a bundler (CSS Modules, JSX) and is consumed as source. export * from "./sequence/index.js"; export * from "./store/index.js"; // export * from "./test/index.js"; // Not exported. export * from "./util/index.js";