UNPKG

renovate

Version:

Automated dependency updates. Flexible so you don't need to be.

8 lines (7 loc) 284 B
import { S3Client } from '@aws-sdk/client-s3'; export declare function getS3Client(s3Endpoint?: string, s3PathStyle?: boolean): S3Client; export interface S3UrlParts { Bucket: string; Key: string; } export declare function parseS3Url(rawUrl: URL | string): S3UrlParts | null;