Skip to content

Commit 3013b33

Browse files
Suppress lint
1 parent f5ea975 commit 3013b33

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

packages/storage/src/api.browser.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ import {StorageReference} from "./public-types";
3333
* retrieve.
3434
* @returns A Promise that resolves with a Blob containing the object's bytes
3535
*/
36+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
3637
function getBlob(
3738
ref: StorageReference,
3839
maxDownloadSizeBytes?: number
@@ -52,7 +53,8 @@ function getBlob(
5253
* retrieve.
5354
* @returns A stream with the object's data as bytes
5455
*/
55-
export function getStream(
56+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
57+
function getStream(
5658
ref: StorageReference,
5759
maxDownloadSizeBytes?: number
5860
): NodeJS.ReadableStream {

packages/storage/src/api.node.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ import {StorageReference} from "./public-types";
3333
* retrieve.
3434
* @returns A Promise that resolves with a Blob containing the object's bytes
3535
*/
36+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
3637
function getBlob(
3738
ref: StorageReference,
3839
maxDownloadSizeBytes?: number
@@ -52,7 +53,8 @@ function getBlob(
5253
* retrieve.
5354
* @returns A stream with the object's data as bytes
5455
*/
55-
export function getStream(
56+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
57+
function getStream(
5658
ref: StorageReference,
5759
maxDownloadSizeBytes?: number
5860
): NodeJS.ReadableStream {

0 commit comments

Comments
 (0)