/**
* @description Exports for the model module.
* @summary This file exports all the necessary components for the model functionality, including the BaseModel, construction utilities, decorators, and more.
* @module core/model
*/
export * from "./BaseModel";
export * from "./construction";
export * from "./decorators";
export * from "./indexing";
export * from "./SequenceModel";
export * from "./types";
Source