@methodus/server
Version:
Server components for @methodus workflow
29 lines (28 loc) • 907 B
TypeScript
import 'reflect-metadata';
import { MethodusConfig, PluginEntry } from '@methodus/framework-commons';
import { MethodHandler } from './method/handlers/method.handler';
import { MethodPipeHandler } from './method/handlers/pipe.handler';
export interface IApp {
set(key: string, value: any): void;
}
export declare class Server {
app: any;
config?: MethodusConfig;
serverKey: string;
_app: any;
httpServer: any;
httpsServer: any;
port: number;
private _plugins;
instanceId: string;
methodHandler?: MethodHandler | null;
methodPipeHandler?: MethodPipeHandler | null;
constructor(port?: number | string, app?: any, httpServer?: any);
makeid(): string;
plugins(plugins: PluginEntry[]): this;
configure(config: MethodusConfig): this;
useClient(_class: any): void;
start(): Promise<this>;
useClass(_class: any): void;
kill(): void;
}