UNPKG

tedi

Version:

Express wrappper written in typescript with dependency injection capabilities

7 lines (6 loc) 279 B
import { WebMetadata } from "./metadata"; import { HttpMethods } from "../core/utils"; export interface WebDecorator extends HttpMethods<() => MethodDecorator> { $getMetadata: (httpMethodName: string, target: Object) => WebMetadata; } export declare const web: WebDecorator;