We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56e4ce4 commit 216ad84Copy full SHA for 216ad84
index.d.ts
@@ -127,12 +127,25 @@ export type HandlerFunction<
127
) => void;
128
129
export interface Options {
130
+ base?: string;
131
+ callbackName?: string;
132
logger?: {
133
level?: string;
134
format?: string;
135
[key: string]: any;
136
};
- [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
147
148
+ s3Config?: S3ClientConfig;
149
}
150
151
export declare class Request<
0 commit comments