mainAny.js 644 B

12345678910111213141516171819202122
  1. // configuration
  2. export { config } from './configReadonly.js';
  3. // functions and constants
  4. export * from './pureFunctionsAny.generated.js';
  5. export * from './impureFunctionsAny.generated.js';
  6. export * from './typeChecks.js';
  7. // error classes
  8. export { IndexError } from '../error/IndexError.js';
  9. export { DimensionError } from '../error/DimensionError.js';
  10. export { ArgumentsError } from '../error/ArgumentsError.js';
  11. // dependency groups
  12. export * from './dependenciesAny.generated.js';
  13. // factory functions
  14. export * from '../factoriesAny.js';
  15. // core
  16. export { create } from '../core/create.js';
  17. export { factory } from '../utils/factory.js';