@sme.up/kokos-sdk-node
    Preparing search index...

    Interface HttpServerAdapter

    interface HttpServerAdapter {
        listen(port: number, callback?: () => void): void;
        use(path: string, ...handlers: HttpHandler[]): void;
        useError(handler: HttpErrorHandler): void;
        useJsonBodyParser(): void;
        useMiddleware(...handlers: HttpHandler[]): void;
        useStatic(path: string, dirPath: string): void;
    }
    Index

    Methods