File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 15
15
* limitations under the License.
16
16
*/
17
17
18
- import { StorageReference } from " ./public-types" ;
18
+ import { StorageReference } from ' ./public-types' ;
19
19
20
20
/**
21
21
* Downloads the data at the object's location. Returns an error if the object
@@ -38,7 +38,7 @@ function getBlob(
38
38
ref : StorageReference ,
39
39
maxDownloadSizeBytes ?: number
40
40
) : Promise < Blob > {
41
- throw new Error ( " Not implemented" ) ;
41
+ throw new Error ( ' Not implemented' ) ;
42
42
}
43
43
44
44
/**
@@ -58,7 +58,7 @@ function getStream(
58
58
ref : StorageReference ,
59
59
maxDownloadSizeBytes ?: number
60
60
) : NodeJS . ReadableStream {
61
- throw new Error ( " getStream() is only supported by NodeJS builds" ) ;
61
+ throw new Error ( ' getStream() is only supported by NodeJS builds' ) ;
62
62
}
63
63
64
64
// TODO(getbytes): Export getBlob/getStream
Original file line number Diff line number Diff line change 15
15
* limitations under the License.
16
16
*/
17
17
18
- import { StorageReference } from " ./public-types" ;
18
+ import { StorageReference } from ' ./public-types' ;
19
19
20
20
/**
21
21
* Downloads the data at the object's location. Returns an error if the object
@@ -38,7 +38,7 @@ function getBlob(
38
38
ref : StorageReference ,
39
39
maxDownloadSizeBytes ?: number
40
40
) : Promise < Blob > {
41
- throw new Error ( " getBlob() is only available in Browser-like environments" ) ;
41
+ throw new Error ( ' getBlob() is only available in Browser-like environments' ) ;
42
42
}
43
43
44
44
/**
@@ -58,7 +58,7 @@ function getStream(
58
58
ref : StorageReference ,
59
59
maxDownloadSizeBytes ?: number
60
60
) : NodeJS . ReadableStream {
61
- throw new Error ( " Not implemented" ) ;
61
+ throw new Error ( ' Not implemented' ) ;
62
62
}
63
63
64
64
// TODO(getbytes): Export getBlob/getStream
You can’t perform that action at this time.
0 commit comments