mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-07 23:37:35 +08:00
67 lines
1.7 KiB
TypeScript
67 lines
1.7 KiB
TypeScript
// Type definitions for s3-uploader
|
|
// Project: https://www.npmjs.com/package/s3-uploader
|
|
// Definitions by: COLSA Corporation <http://www.colsa.com/>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
//NOTE: Does require GM (https://github.com/aheckmann/gm) thus requires GraphicsMagick (http://www.graphicsmagick.org/) or ImageMagick (http://www.imagemagick.org/)
|
|
|
|
declare module "s3-uploader" {
|
|
export = Upload;
|
|
}
|
|
interface S3UploaderVersion {
|
|
original?: boolean;
|
|
suffix?: string;
|
|
quality?: number;
|
|
maxWidth?: number;
|
|
maxHeight?: number;
|
|
}
|
|
|
|
interface S3UploaderOptions {
|
|
awsAccessKeyId?: string;
|
|
awsSecretAccessKey?: string;
|
|
awsBucketRegion?: string;
|
|
awsBucketPath?: string;
|
|
awsBucketAcl?: string;
|
|
awsMaxRetries?: number;
|
|
awsHttpTimeout?: number;
|
|
resizeQuality?: number;
|
|
returnExif?: boolean;
|
|
tmpDir?: string;
|
|
workers?: number;
|
|
url?: string;
|
|
versions?: S3UploaderVersion;
|
|
}
|
|
|
|
declare class Meta {
|
|
public format: string;
|
|
public fileSize: string;
|
|
public imageSize: imageSize;
|
|
public orientation: string;
|
|
public colorSpace: string;
|
|
public compression: string;
|
|
public quallity: string;
|
|
}
|
|
|
|
declare class imageSize {
|
|
public height: number;
|
|
public width: number;
|
|
}
|
|
|
|
declare class image {
|
|
public etag: string;
|
|
public format: string;
|
|
public height: number;
|
|
public original: boolean;
|
|
public path: string;
|
|
public size: string;
|
|
public src: string;
|
|
public url: string;
|
|
public width: number;
|
|
}
|
|
|
|
declare class Upload {
|
|
public constructor(awsBucketName: string, opts: S3UploaderOptions);
|
|
|
|
public upload(src: string, opts?: S3UploaderOptions, cb?: (err: string, images: image[], meta: Meta) => void): void;
|
|
}
|