Source

migrations/index.ts

/**
 * @description Exports for the migrations module.
 * @summary This file exports all the necessary components for the migrations functionality, including constants, decorators, and more.
 * @module core/migrations
 */

import "../overrides";

export * from "./constants";
export * from "./decorators";
export * from "./Migration";
export * from "./MigrationService";
export * from "./MigrationTaskBuilder";
export * from "./MigrationTasks";
export * from "./StandardMigrationVersioning";
export * from "./MigrationVersioning";
export * from "./types";