Skip to content

Commit 216ad84

Browse files
committed
.
1 parent 56e4ce4 commit 216ad84

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

index.d.ts

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,12 +127,25 @@ export type HandlerFunction<
127127
) => void;
128128

129129
export interface Options {
130+
base?: string;
131+
callbackName?: string;
130132
logger?: {
131133
level?: string;
132134
format?: string;
133135
[key: string]: any;
134136
};
135-
[key: string]: any;
137+
mimeTypes?: {
138+
[key: string]: string;
139+
};
140+
serializer?: (data: any) => string;
141+
version?: string;
142+
errorHeaderWhitelist?: string[];
143+
isBase64?: boolean;
144+
compression?: boolean | string[];
145+
headers?: {
146+
[key: string]: string;
147+
};
148+
s3Config?: S3ClientConfig;
136149
}
137150

138151
export declare class Request<

0 commit comments

Comments
 (0)