Libraries
    Preparing search index...

    The output of resolving a route path template to an OpenAPI-compatible path string and its parameter list.

    interface ResolvedPath {
        parameters: readonly PathParameterInfo[];
        path: string;
    }
    Index

    Properties

    Properties

    parameters: readonly PathParameterInfo[]

    Extracted path parameters with their JSON Schema

    path: string

    OpenAPI-formatted path, e.g. /api/users/{id}