UNPKG

relata-react-aws-s3

Version:

Open Source Module to Upload your Media and files into AWS S3 Bucket directly from Front-end React.

10 lines (9 loc) 364 B
import { IConfig, DeleteResponse, UploadResponse } from "./types"; declare class ReactS3Client { private config; constructor(config: IConfig); uploadFile(file: File, newFileName?: string): Promise<UploadResponse>; deleteFile(fileName: string): Promise<DeleteResponse>; private getFileNameWithExtension; } export default ReactS3Client;