shokupan 0.0.1 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,5 +3,7 @@ import { Middleware, NextFn } from './types';
3
3
  /**
4
4
  * Composes a list of middleware into a single function.
5
5
  * This is the onion model (Koa-style).
6
+ *
7
+ * CRITICAL: This must build the chain ONCE, not rebuild it on every request.
6
8
  */
7
9
  export declare const compose: (middleware: Middleware[]) => (context: ShokupanContext<unknown>, next?: NextFn) => Promise<any>;