next-api-utils
    Preparing search index...

    Type Alias NextRouteHandlerSegmentData<PathParameters>

    The segment data object passed to a Next.js API route handler as the second parameter.

    type NextRouteHandlerSegmentData<
        PathParameters extends Record<string, string> = Record<never, never>,
    > = {
        params: Promise<PathParameters>;
    }

    Type Parameters

    • PathParameters extends Record<string, string> = Record<never, never>
    Index

    Properties

    Properties

    params: Promise<PathParameters>