lesgo
Version:
Core framework for lesgo node.js serverless framework.
6 lines (5 loc) • 400 B
TypeScript
import { GetSignedUrlOptions } from '../../services/S3Service/getDownloadSignedUrl';
import { GetObjectOptions } from '../../services/S3Service/getObject';
import { ClientOptions } from '../../types/aws';
declare const getDownloadSignedUrl: (key: string, opts?: GetObjectOptions, signingOpts?: GetSignedUrlOptions, clientOpts?: ClientOptions) => Promise<string>;
export default getDownloadSignedUrl;