React Native Firebase
    Preparing search index...

    Storage reference to a file or folder location.

    interface StorageReference {
        bucket: string;
        fullPath: string;
        name: string;
        parent: StorageReference | null;
        root: StorageReference;
        storage: FirebaseStorage;
        toString(): string;
    }
    Index

    Methods

    Properties

    bucket: string

    The name of the bucket containing this reference's object.

    fullPath: string

    The full path of this object.

    name: string

    The short name of this object, which is the last component of the full path. For example, if fullPath is 'full/path/image.png', name is 'image.png'.

    parent: StorageReference | null

    A reference pointing to the parent location of this reference, or null if this reference is the root.

    A reference to the root of this object's bucket.

    The FirebaseStorage instance associated with this reference.