Skip to content

Commit 21759f7

Browse files
committed
more doc
1 parent 8288325 commit 21759f7

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

packages/firebase/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5510,8 +5510,8 @@ declare namespace firebase.storage {
55105510
* References to sub-folders. You can call list() on them to get its contents.
55115511
* GCS's
55125512
*
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')
55155515
* will return '/a/b' as a prefix.
55165516
*/
55175517
prefixes: Reference[];

packages/storage/src/implementation/list.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ import { ListResult } from '../list';
2626

2727
/**
2828
* 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.
3031
*/
3132
interface ListMetadataResponse {
3233
name: string;

0 commit comments

Comments
 (0)