Skip to content

Commit cc108c3

Browse files
committed
remove stray getWithMetadata overload
1 parent 0bd0182 commit cc108c3

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

packages/blobs/src/store.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ function otel<This extends Store, Args extends any[], Return>(getAttributes?: (.
147147
}
148148
}
149149

150-
export type BlobResponseType = 'arrayBuffer' | 'bytes' | 'blob' | 'json' | 'stream' | 'text'
150+
export type BlobResponseType = 'arrayBuffer' | 'blob' | 'json' | 'stream' | 'text'
151151

152152
export class Store {
153153
private client: Client
@@ -279,10 +279,6 @@ export class Store {
279279
key: string,
280280
options: { type: 'blob' } & GetWithMetadataOptions,
281281
): Promise<({ data: Blob } & GetWithMetadataResult) | null>
282-
async getWithMetadata(
283-
key: string,
284-
options: { type: 'blob' } & GetWithMetadataOptions,
285-
): Promise<({ data: Uint8Array } & GetWithMetadataResult) | null>
286282

287283
async getWithMetadata(
288284
key: string,

0 commit comments

Comments
 (0)