From da3df6891c1f3f92e3929858cb3993b1c00a19e2 Mon Sep 17 00:00:00 2001 From: Edmundo Santos Date: Thu, 25 Mar 2021 16:26:07 -0300 Subject: [PATCH] types: update configure.d.ts --- src/configure.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/configure.d.ts b/src/configure.d.ts index af49503e..714727c0 100644 --- a/src/configure.d.ts +++ b/src/configure.d.ts @@ -28,13 +28,13 @@ interface BinarySettings { contentTypes?: string[]; } -interface ConfigureResult { - handler: Handler; +interface ConfigureResult { + handler: Handler; log: Logger; proxy: (proxyParams: ProxyParams) => Promise; } -declare function configure(configureParams: ConfigureParams): Handler & ConfigureResult; +declare function configure(configureParams: ConfigureParams): Handler & ConfigureResult; // declare function proxy(proxyParams: ProxyParams): Promise