rozod
    Preparing search index...

    Type Alias RefreshCookieResult

    Result of a manual cookie refresh operation.

    type RefreshCookieResult = {
        error?: string;
        newCookie?: string;
        poolIndex: number;
        success: boolean;
    }
    Index

    Properties

    error?: string

    Error message if refresh failed

    newCookie?: string

    The new cookie value if refresh was successful

    poolIndex: number

    The index in the cookie pool that was refreshed

    success: boolean