Interface IsolationLevel

interface IsolationLevel {
    _tag: "IsolationLevel";
    level: "ReadUncommitted" | "ReadCommitted" | "RepeatableRead" | "Serializable";
}

Hierarchy

  • Tagged<"IsolationLevel", {
        level: "ReadUncommitted" | "ReadCommitted" | "RepeatableRead" | "Serializable";
    }>
    • IsolationLevel

Properties

Properties

_tag: "IsolationLevel"
level: "ReadUncommitted" | "ReadCommitted" | "RepeatableRead" | "Serializable"

Generated using TypeDoc