mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Revert "Express: improve type of `Request['params']` aka `req.params` (#37502)"
This reverts commit 9aa863ef23.
* Express: use generics for params, default to dictionary
* Lint
* Bump all dependants
* Spacing
* Bump dependants
* Bump dependants
* Bump dependants
* Bump dependants
* Bump dependants
* Bump dependants
* Bump dependants
* Bump dependants
* Bump dependants
* Bump dependants
* Bump dependants (via tests)
* Bump dependants
* Bump dependants (via tests)
* Bump dependants
* Simplify test
* Hoist imports
* Tidy test
* Add tests
* Add reasons
* Remove redundant params
* Add tests
* Format
* Remove redundant params
* Add tests
* Add JSDoc
* Improve comment
* Improve comment
57 lines
2.3 KiB
TypeScript
57 lines
2.3 KiB
TypeScript
// Type definitions for multer-s3 2.7
|
|
// Project: https://github.com/badunk/multer-s3
|
|
// Definitions by: KIM Jaesuck a.k.a. gim tcaesvk <https://github.com/tcaesvk>
|
|
// Gal Talmor <https://github.com/galtalmor>
|
|
// Matt Terski <https://github.com/terski>
|
|
// Definitions: https://github.com/DefinitelyType/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
import * as AWS from "aws-sdk";
|
|
import { StorageEngine } from "multer";
|
|
|
|
interface Options {
|
|
s3: AWS.S3;
|
|
bucket: ((req: Express.Request, file: Express.Multer.File, callback: (error: any, bucket?: string) => void) => void) | string;
|
|
key?(req: Express.Request, file: Express.Multer.File, callback: (error: any, key?: string) => void): void;
|
|
acl?: ((req: Express.Request, file: Express.Multer.File, callback: (error: any, acl?: string) => void) => void) | string;
|
|
contentType?(req: Express.Request, file: Express.Multer.File, callback: (error: any, mime?: string, stream?: NodeJS.ReadableStream) => void): void;
|
|
metadata?(req: Express.Request, file: Express.Multer.File, callback: (error: any, metadata?: any) => void): void;
|
|
cacheControl?: ((req: Express.Request, file: Express.Multer.File, callback: (error: any, cacheControl?: string) => void) => void) | string;
|
|
serverSideEncryption?: ((req: Express.Request, file: Express.Multer.File, callback: (error: any, serverSideEncryption?: string) => void) => void) | string;
|
|
}
|
|
|
|
declare global {
|
|
namespace Express {
|
|
namespace MulterS3 {
|
|
interface File extends Multer.File {
|
|
bucket: string;
|
|
key: string;
|
|
acl: string;
|
|
contentType: string;
|
|
contentDisposition: null;
|
|
storageClass: string;
|
|
serverSideEncryption: null;
|
|
metadata: any;
|
|
location: string;
|
|
etag: string;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
interface S3Storage {
|
|
(options?: Options): StorageEngine;
|
|
|
|
AUTO_CONTENT_TYPE(
|
|
req: Express.Request,
|
|
file: Express.Multer.File,
|
|
callback: (error: any, mime?: string, stream?: NodeJS.ReadableStream) => void): void;
|
|
DEFAULT_CONTENT_TYPE(
|
|
req: Express.Request,
|
|
file: Express.Multer.File,
|
|
callback: (error: any, mime?: string) => void): void;
|
|
}
|
|
|
|
declare const s3Storage: S3Storage;
|
|
export = s3Storage;
|