# Interface JsonMethodPath

Interface
Module
import { JsonMethodPath } from "@tsed/schema"
Source/packages/specs/schema/src/types/domain/JsonOperation.ts

# Overview

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

# Members

path: string | RegExp;

method: string;

[key: string]: any;