Skip to content

Commit

Permalink
chore(internal): don't re-export streaming type (#648)
Browse files Browse the repository at this point in the history
exporting it breaks cloudflare types
  • Loading branch information
stainless-bot committed Jan 23, 2024
1 parent 2f073e4 commit 4c4be94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/streaming.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { OpenAIError } from './error';

import { APIError } from 'openai/error';

export type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined;
type Bytes = string | ArrayBuffer | Uint8Array | Buffer | null | undefined;

export type ServerSentEvent = {
event: string | null;
Expand Down

0 comments on commit 4c4be94

Please sign in to comment.