UNPKG

@gotamedia/aws

Version:

Set of AWS helpers for NodeJs Runtime.

7 lines (6 loc) 519 B
import type { GetObjectCommandInput, PutObjectCommandInput, DeleteObjectCommandInput } from "@aws-sdk/client-s3"; declare const S3: import("@aws-sdk/types").Client<any, any, any>; declare const getObject: (params: GetObjectCommandInput) => Promise<import("@aws-sdk/client-s3").GetObjectCommandOutput>; declare const putObject: (params: PutObjectCommandInput) => Promise<void>; declare const deleteObject: (params: DeleteObjectCommandInput) => Promise<void>; export { getObject, putObject, deleteObject, S3 as client };