UNPKG

react-native-compressor-forked

Version:
47 lines (46 loc) 1.89 kB
export declare enum FileSystemUploadType { BINARY_CONTENT = 0, MULTIPART = 1 } export declare type FileSystemAcceptedUploadHttpMethod = 'POST' | 'PUT' | 'PATCH'; export declare type compressionMethod = 'auto' | 'manual'; declare type videoCompresssionType = { bitrate?: number; maxSize?: number; compressionMethod?: compressionMethod; minimumFileSizeForCompress?: number; quality?: string; getCancellationId?: (cancellationId: string) => void; }; export declare enum FileSystemSessionType { BACKGROUND = 0, FOREGROUND = 1 } export declare type HTTPResponse = { status: number; headers: Record<string, string>; body: string; }; export declare type FileSystemUploadOptions = ({ uploadType?: FileSystemUploadType.BINARY_CONTENT; } | { uploadType: FileSystemUploadType.MULTIPART; fieldName?: string; mimeType?: string; parameters?: Record<string, string>; }) & { headers?: Record<string, string>; httpMethod?: FileSystemAcceptedUploadHttpMethod; sessionType?: FileSystemSessionType; }; export declare type VideoCompressorType = { compress(fileUrl: string, options?: videoCompresssionType, onProgress?: (progress: number) => void): Promise<string>; cancelCompression(cancellationId: string): void; backgroundUpload(url: string, fileUrl: string, options: FileSystemUploadOptions, onProgress?: (writtem: number, total: number) => void): Promise<any>; activateBackgroundTask(onExpired?: (data: any) => void): Promise<any>; deactivateBackgroundTask(): Promise<any>; }; export declare const backgroundUpload: (url: string, fileUrl: string, options: FileSystemUploadOptions, onProgress?: ((writtem: number, total: number) => void) | undefined) => Promise<any>; export declare const cancelCompression: (cancellationId: string) => any; declare const Video: VideoCompressorType; export default Video;