UNPKG

@methodus/server

Version:
16 lines (15 loc) 394 B
import { ServerType } from './interfaces'; export declare class Verbs { static Get: string; static Post: string; static Put: string; static Patch: string; static Head: string; static Delete: string; } export declare class RestParser { parser: any; response: any; constructor(type: ServerType); parse(args: any, paramsMap: any, functionArgs: any): any; }