Interface RequestHandlerOptions

interface RequestHandlerOptions {
    emitEventCallback?: ((type: string, event: unknown) => void);
}

Properties

emitEventCallback?: ((type: string, event: unknown) => void)