From ba18dcdbdc2a41fe8ae0ae9bd52087b76b318573 Mon Sep 17 00:00:00 2001 From: Naor Peled Date: Wed, 12 Jul 2023 00:21:51 +0300 Subject: [PATCH] feat(s3-service): add setConfig type (#243) --- index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.d.ts b/index.d.ts index 8bcb756..0d7a523 100644 --- a/index.d.ts +++ b/index.d.ts @@ -4,6 +4,7 @@ import { APIGatewayProxyEventV2, Context, } from 'aws-lambda'; +import { S3ClientConfig } from '@aws-sdk/client-s3'; export declare interface CookieOptions { domain?: string; @@ -132,6 +133,7 @@ export declare interface Options { isBase64?: boolean; compression?: boolean; headers?: object; + s3Config?: S3ClientConfig; } export declare class Request {