Skip to content

Commit 47aadca

Browse files
committed
run yarn format
1 parent abd8915 commit 47aadca

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

packages/storage/src/implementation/connection.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@
1818
export type Headers = Record<string, string>;
1919

2020
/** Response type exposed by the networking APIs. */
21-
export type ConnectionType = string | ArrayBuffer | Blob | ReadableStream<Uint8Array>;
21+
export type ConnectionType =
22+
| string
23+
| ArrayBuffer
24+
| Blob
25+
| ReadableStream<Uint8Array>;
2226

2327
/**
2428
* A lightweight wrapper around XMLHttpRequest with a

packages/storage/src/platform/node/connection.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,9 @@ export function newBytesConnection(): Connection<ArrayBuffer> {
146146
return new FetchBytesConnection();
147147
}
148148

149-
export class FetchStreamConnection extends FetchConnection<ReadableStream<Uint8Array>> {
149+
export class FetchStreamConnection extends FetchConnection<
150+
ReadableStream<Uint8Array>
151+
> {
150152
private stream_: ReadableStream<Uint8Array> | null = null;
151153

152154
async send(

0 commit comments

Comments
 (0)