Libraries
    Preparing search index...

    Describes a single path parameter extracted from a route template, including its name and the JSON Schema representation of its type.

    interface PathParameterInfo {
        name: string;
        schema: Record<string, unknown>;
    }
    Index

    Properties

    Properties

    name: string
    schema: Record<string, unknown>