Skip to content

Commit

Permalink
feat: export interfaces from schema-builder/options (#8383)
Browse files Browse the repository at this point in the history
Export options interfaces from 'src/schema-builder/options', making them
usable in migrations, e.g.:
import { TableColumnOptions } from 'typeorm';
  • Loading branch information
navarroaxel committed Nov 18, 2021
1 parent 8a5e671 commit 7b8a1e3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/index.ts
Expand Up @@ -104,6 +104,14 @@ export * from "./schema-builder/table/TableForeignKey";
export * from "./schema-builder/table/TableIndex";
export * from "./schema-builder/table/TableUnique";
export * from "./schema-builder/table/Table";
export * from "./schema-builder/options/TableCheckOptions";
export * from "./schema-builder/options/TableColumnOptions";
export * from "./schema-builder/options/TableExclusionOptions";
export * from "./schema-builder/options/TableForeignKeyOptions";
export * from "./schema-builder/options/TableIndexOptions";
export * from "./schema-builder/options/TableOptions";
export * from "./schema-builder/options/TableUniqueOptions";
export * from "./schema-builder/options/ViewOptions";
export * from "./driver/mongodb/typings";
export * from "./driver/types/DatabaseType";
export * from "./driver/types/ReplicationMode";
Expand Down

0 comments on commit 7b8a1e3

Please sign in to comment.