@methodus/server
Version:
Server components for @methodus workflow
16 lines (15 loc) • 394 B
TypeScript
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;
}