prorm API Reference
    Preparing search index...

    Type Alias IsolationLevelString

    IsolationLevelString:
        | "READ UNCOMMITTED"
        | "READ COMMITTED"
        | "REPEATABLE READ"
        | "SERIALIZABLE"

    ANSI SQL transaction isolation levels expressed as a string-literal union. Kept as a standalone export (in addition to the IsolationLevel enum below) so existing code that passes raw strings such as { isolationLevel: 'SERIALIZABLE' } keeps compiling without changes.