UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript and ES2023+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.

16 lines (15 loc) 367 B
import type { DeferrableType } from "../metadata/types/DeferrableType"; export interface EntitySchemaExclusionOptions { /** * Exclusion constraint name. */ name?: string; /** * Exclusion expression. */ expression: string; /** * Indicate if exclusion constraints can be deferred. */ deferrable?: DeferrableType; }