Skip to content

Commit 6577bb7

Browse files
Update src/interface/middleware.shape.ts
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 6daf764 commit 6577bb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/interface/middleware.shape.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ export interface MiddlewareShape<Input = any, Output = any, Middleware = any> {
1111
execute(context: Input): void;
1212
execute(...args: Input[]): void;
1313
use(middleware: Middleware): this;
14-
executeAsync(context: Input): Promise<Output>; // Or Promise<Output> if defined
15-
executeAsync(...args: Input[]): Promise<Output>; // Or Promise<Output> if defined
14+
executeAsync(context: Input): Promise<Output>;
15+
executeAsync(...args: Input[]): Promise<Output>;
1616
}

0 commit comments

Comments
 (0)