Skip to content

Commit 09b3cd4

Browse files
committed
chore(internal): don't re-export streaming type (#648)
exporting it breaks cloudflare types
1 parent 8d9eeeb commit 09b3cd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/streaming.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { OpenAIError } from './error';
33

44
import { APIError } from 'openai/error';
55

6-
export type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined;
6+
type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined;
77

88
export type ServerSentEvent = {
99
event: string | null;

0 commit comments

Comments
 (0)