@methodus/server
Version:
Server components for @methodus workflow
10 lines (9 loc) • 361 B
TypeScript
import { MethodType, ServerType } from '../interfaces';
export declare class MethodusClassConfig {
methodType: MethodType;
serverType: ServerType;
classType: any;
serviceName?: string;
resolver: Promise<string> | string | any;
constructor(classType: any, methodType: MethodType, serverType: ServerType, resolver?: Promise<any> | any);
}