Skip to content

Commit 539277c

Browse files
author
waleed
committed
remove redundant comments
1 parent 82e4ffa commit 539277c

File tree

2 files changed

+0
-24
lines changed

2 files changed

+0
-24
lines changed

apps/sim/lib/uploads/providers/blob/types.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,23 @@
1-
/**
2-
* Blob storage configuration
3-
*/
41
export interface BlobConfig {
52
containerName: string
63
accountName: string
74
accountKey?: string
85
connectionString?: string
96
}
107

11-
/**
12-
* Azure multipart upload initialization options
13-
*/
148
export interface AzureMultipartUploadInit {
159
fileName: string
1610
contentType: string
1711
fileSize: number
1812
customConfig?: BlobConfig
1913
}
2014

21-
/**
22-
* Azure part upload URL
23-
*/
2415
export interface AzurePartUploadUrl {
2516
partNumber: number
2617
blockId: string
2718
url: string
2819
}
2920

30-
/**
31-
* Azure multipart part
32-
*/
3321
export interface AzureMultipartPart {
3422
blockId: string
3523
partNumber: number

apps/sim/lib/uploads/providers/s3/types.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,20 @@
1-
/**
2-
* S3 storage configuration
3-
*/
41
export interface S3Config {
52
bucket: string
63
region: string
74
}
85

9-
/**
10-
* S3 multipart upload initialization options
11-
*/
126
export interface S3MultipartUploadInit {
137
fileName: string
148
contentType: string
159
fileSize: number
1610
customConfig?: S3Config
1711
}
1812

19-
/**
20-
* S3 part upload URL
21-
*/
2213
export interface S3PartUploadUrl {
2314
partNumber: number
2415
url: string
2516
}
2617

27-
/**
28-
* S3 multipart part
29-
*/
3018
export interface S3MultipartPart {
3119
ETag: string
3220
PartNumber: number

0 commit comments

Comments
 (0)