@suluk/better-auth - v0.2.0
    Preparing search index...

    Interface CascadeOptions

    interface CascadeOptions {
        continueOnError?: boolean;
        log?: (step: string, error: unknown) => void;
    }
    Index

    Properties

    continueOnError?: boolean

    if a step throws: log + continue (true), or ABORT the whole cascade (false — the fail-closed default, so a failed cleanup never silently half-erases and then deletes the user).

    log?: (step: string, error: unknown) => void

    diagnostics sink (default console.error).