mcard-js
Version:
MCard - Content-addressable storage with cryptographic hashing, handle resolution, and vector search for Node.js and browsers
18 lines • 767 B
TypeScript
/**
* CLMLoader - Load and parse Cubical Logic Model files
*
* =============================================================================
* REFACTORED MODULE - Implementation now in mcard-js/src/ptr/node/clm/
* =============================================================================
*
* This file now serves as a backward-compatible re-export layer.
*
* Direct imports from this module are supported for backward compatibility:
* import { CLMLoader, CLMSpec } from './CLMLoader.js';
*
* Recommended usage for new code:
* import { CLMLoader, CLMSpec } from './clm/index.js';
*/
export type { CLMSpec, RuntimeConfig, CLMExample, } from './clm/types.js';
export { CLMLoader } from './clm/loader.js';
//# sourceMappingURL=CLMLoader.d.ts.map