Teleforge API Reference - v0.1.0
    Preparing search index...

    Interface CookieOptions

    interface CookieOptions {
        domain?: string;
        expires?: Date;
        httpOnly?: boolean;
        maxAge?: number;
        path?: string;
        sameSite?: "strict" | "none" | "lax";
        secure?: boolean;
        value: string;
    }
    Index

    Properties

    domain?: string
    expires?: Date
    httpOnly?: boolean
    maxAge?: number
    path?: string
    sameSite?: "strict" | "none" | "lax"
    secure?: boolean
    value: string