Libraries
    Preparing search index...

    Interface EndpointRegistration

    A registered endpoint pairing its metadata (method, path, schemas) with the handler function and any per-endpoint middleware.

    interface EndpointRegistration {
        endpoint: EndpointMetadata;
        handler: (...args: any[]) => any;
        middlewares?: readonly Middleware[];
    }
    Index

    Properties

    handler: (...args: any[]) => any
    middlewares?: readonly Middleware[]