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