Skip to content

JsonMethodPath

@tsed/schema

Usage

typescript
import { JsonMethodPath } from "@tsed/schema";

See /packages/specs/schema/src/types/domain/JsonOperation.ts.

Overview

ts
interface JsonMethodPath {
    path: string | RegExp;
    method: string;
    [key: string]: any;
}

path

ts
path: string | RegExp;

method

ts
method: string;

[key: string]

ts
[key: string]: any;

Released under the MIT License.