File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
storage/src/implementation Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -5510,8 +5510,8 @@ declare namespace firebase.storage {
5510
5510
* References to sub-folders. You can call list() on them to get its contents.
5511
5511
* GCS's
5512
5512
*
5513
- * Folder is implict using '/' as the delimiter .
5514
- * For example, if you have two objects '/a/b/1' and '/a/b/2', list('/a')
5513
+ * Folders are implict based on '/' in the object paths .
5514
+ * For example, if a bucket has two objects '/a/b/1' and '/a/b/2', list('/a')
5515
5515
* will return '/a/b' as a prefix.
5516
5516
*/
5517
5517
prefixes : Reference [ ] ;
Original file line number Diff line number Diff line change @@ -26,7 +26,8 @@ import { ListResult } from '../list';
26
26
27
27
/**
28
28
* Represents the simplified object metadata returned by List API.
29
- * Other fields are filtered because list does not grant permission to get metadata.
29
+ * Other fields are filtered because list in Firebase Rules does not grant
30
+ * the permission to read the metadata.
30
31
*/
31
32
interface ListMetadataResponse {
32
33
name : string ;
You can’t perform that action at this time.
0 commit comments