@glandjs/express
Version:
An Express adapter for Gland HTTP protocol layer, enabling classic middleware-based routing within the Gland architecture solution.
7 lines (6 loc) • 351 B
TypeScript
import { HttpBroker, type HttpApplicationOptions } from '@glandjs/http';
import { ExpressCore } from './core';
import { EventRecord } from '@glandjs/events';
export declare class ExpressBroker<TEvents extends EventRecord> extends HttpBroker<TEvents, ExpressCore<TEvents>, HttpApplicationOptions> {
constructor(options?: HttpApplicationOptions);
}