Skip to content

PlatformRouteDetails

@tsed/platform-http

Usage

typescript
import { PlatformRouteDetails } from "@tsed/platform-http";

See /packages/platform/platform-http/src/types/common/domain/PlatformRouteDetails.ts.

Overview

ts
interface PlatformRouteDetails {
    method: string;
    name: string;
    url: string;
    className: string;
    methodClassName: string;
}

method

ts
method: string;

name

ts
name: string;

url

ts
url: string;

className

ts
className: string;

methodClassName

ts
methodClassName: string;

Released under the MIT License.