@methodus/server
Version:
Server components for @methodus workflow
20 lines (19 loc) • 672 B
TypeScript
import { MethodResult, MethodError } from '@methodus/framework-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 {
constructor();
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);
}