import { IsolationLevel } from 'typeorm/driver/types/IsolationLevel'; import { Propagation } from '../const/propagation'; export interface TransactionOptions { connectionName?: string; isolationLevel?: IsolationLevel; propagation?: Propagation; }