Interface Transaction

interface Transaction {
    id: string;
    level: IsolationLevel;
    savepoints: string[];
    isActive: boolean;
}

Properties

id: string
savepoints: string[]
isActive: boolean