@methodus/server
Version:
Server components for @methodus workflow
19 lines (18 loc) • 664 B
TypeScript
import { MethodResult, MethodError } from '@methodus/framework-decorators/commons';
import { ConfiguredServer } from '../../server.configured';
export declare class EmitterTestServer extends ConfiguredServer {
constructor();
}
export declare class ParserForPlugin {
constructor();
parse(args: any, paramsMap: any, functionArgs: any): ParserResponse;
}
export declare class EmitterResponse {
handle(args: any, methodResult: MethodResult | MethodError | any, headers: any): any;
}
export declare class ParserResponse {
args: any;
isRest: boolean;
securityContext: any;
constructor(args: any, isRest: boolean, securityContext: any);
}