You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/packages/StorageFileApi.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -148,9 +148,9 @@ export default class StorageFileApi {
148
148
}
149
149
150
150
/**
151
-
* Upload a file with a token generated from `createUploadSignedUrl`.
151
+
* Upload a file with a token generated from `createSignedUploadUrl`.
152
152
* @param path The file path, including the file name. Should be of the format `folder/subfolder/filename.png`. The bucket must already exist before attempting to upload.
153
-
* @param token The token generated from `createUploadSignedUrl`
153
+
* @param token The token generated from `createSignedUploadUrl`
154
154
* @param fileBody The body of the file to be stored in the bucket.
155
155
*/
156
156
asyncuploadToSignedUrl(
@@ -212,7 +212,7 @@ export default class StorageFileApi {
212
212
213
213
/**
214
214
* Creates a signed upload URL.
215
-
* Signed upload URLs can be used upload files to the bucket without further authentication.
215
+
* Signed upload URLs can be used to upload files to the bucket without further authentication.
216
216
* They are valid for one minute.
217
217
* @param path The file path, including the current file name. For example `folder/image.png`.
0 commit comments