Spaces:
Runtime error
Runtime error
File size: 262 Bytes
637e633 |
1 2 3 4 5 6 7 8 9 10 11 12 |
export interface GenerateSignedUrlParams {
bucketName: string;
objectKey: string;
expiration?: number;
contentType?: string;
}
export interface GenerateDownloadUrlParams {
bucketName: string;
objectKey: string;
expiration?: number;
}
|