bunway
    Preparing search index...

    Interface CsrfOptions

    interface CsrfOptions {
        bodyField?: string;
        cookie?: {
            httpOnly?: boolean;
            name?: string;
            path?: string;
            sameSite?: "strict" | "lax" | "none";
            secure?: boolean;
        };
        headerName?: string;
        ignoreMethods?: string[];
        tokenLength?: number;
    }
    Index

    Properties

    bodyField?: string
    cookie?: {
        httpOnly?: boolean;
        name?: string;
        path?: string;
        sameSite?: "strict" | "lax" | "none";
        secure?: boolean;
    }
    headerName?: string
    ignoreMethods?: string[]
    tokenLength?: number