@grandlinex/kernel
    Preparing search index...

    Type Alias XActionEvent<G, B>

    type XActionEvent<G = JwtToken | null, B = any> = {
        agent: BaseUserAgent;
        body: B;
        data: G;
        extension: IExtensionInterface;
        next: XNextFc;
        req: XRequest;
        res: XResponse;
        sendError: (code: number, error: Partial<ErrorType>) => void;
    }

    Type Parameters

    Index

    Properties

    body: B
    data: G
    next: XNextFc
    sendError: (code: number, error: Partial<ErrorType>) => void