Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
naorpeled committed Feb 8, 2025
1 parent 56e4ce4 commit 216ad84
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,25 @@ export type HandlerFunction<
) => void;

export interface Options {
base?: string;
callbackName?: string;
logger?: {
level?: string;
format?: string;
[key: string]: any;
};
[key: string]: any;
mimeTypes?: {
[key: string]: string;
};
serializer?: (data: any) => string;
version?: string;
errorHeaderWhitelist?: string[];
isBase64?: boolean;
compression?: boolean | string[];
headers?: {
[key: string]: string;
};
s3Config?: S3ClientConfig;
}

export declare class Request<
Expand Down

0 comments on commit 216ad84

Please sign in to comment.