File tree 2 files changed +6
-2
lines changed 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ import {StorageReference} from "./public-types";
33
33
* retrieve.
34
34
* @returns A Promise that resolves with a Blob containing the object's bytes
35
35
*/
36
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
36
37
function getBlob (
37
38
ref : StorageReference ,
38
39
maxDownloadSizeBytes ?: number
@@ -52,7 +53,8 @@ function getBlob(
52
53
* retrieve.
53
54
* @returns A stream with the object's data as bytes
54
55
*/
55
- export function getStream (
56
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
57
+ function getStream (
56
58
ref : StorageReference ,
57
59
maxDownloadSizeBytes ?: number
58
60
) : NodeJS . ReadableStream {
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ import {StorageReference} from "./public-types";
33
33
* retrieve.
34
34
* @returns A Promise that resolves with a Blob containing the object's bytes
35
35
*/
36
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
36
37
function getBlob (
37
38
ref : StorageReference ,
38
39
maxDownloadSizeBytes ?: number
@@ -52,7 +53,8 @@ function getBlob(
52
53
* retrieve.
53
54
* @returns A stream with the object's data as bytes
54
55
*/
55
- export function getStream (
56
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
57
+ function getStream (
56
58
ref : StorageReference ,
57
59
maxDownloadSizeBytes ?: number
58
60
) : NodeJS . ReadableStream {
You can’t perform that action at this time.
0 commit comments