MonoCloud Authentication SDK
    Preparing search index...

    Context object provided to App Router route handlers.

    Contains dynamic route parameters resolved from the matched route segment (for example, [id] or [...slug]).

    In streaming or async environments, params may be provided as a Promise.

    interface AppRouterContext {
        params:
            | Record<string, string | string[]>
            | Promise<Record<string, string | string[]>>;
    }
    Index

    Properties

    Properties

    params:
        | Record<string, string | string[]>
        | Promise<Record<string, string | string[]>>

    Dynamic route parameters extracted from the request URL.