UNPKG

@lattice/core

Version:
8 lines (7 loc) 549 B
import { HttpMethod } from '..'; export declare const METHOD_META_LIST = "__method_meta_list__"; export declare function Method(method: HttpMethod, uri?: string): (target: any, targetKey: string) => void; export declare function Get(uri?: string): (target: any, targetKey: string) => void; export declare function Post(uri?: string): (target: any, targetKey: string) => void; export declare function Put(uri?: string): (target: any, targetKey: string) => void; export declare function Delete(uri?: string): (target: any, targetKey: string) => void;