Documentation
    Preparing search index...

    Representation of a parsed named middleware with its metadata, arguments and execution handler

    type ParsedNamedMiddleware = {
        name: string;
        reference: LazyImport<MiddlewareAsClass> | MiddlewareAsClass;
        handle: ParsedGlobalMiddleware["handle"];
        args: any;
    }
    Index

    Properties

    name: string

    Name identifier for the middleware

    reference: LazyImport<MiddlewareAsClass> | MiddlewareAsClass

    Reference to the middleware class or lazy import

    Handler function that executes the middleware

    args: any

    Arguments to pass to the middleware