Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

export rsc util types #1536

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
4 changes: 2 additions & 2 deletions packages/core/rsc/stream-ui/stream-ui.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type Renderer<T extends Array<any>> = (
| Generator<Streamable, Streamable, void>
| AsyncGenerator<Streamable, Streamable, void>;

type RenderTool<PARAMETERS extends z.ZodTypeAny = any> = {
export type RenderTool<PARAMETERS extends z.ZodTypeAny = any> = {
description?: string;
parameters: PARAMETERS;
generate?: Renderer<
Expand All @@ -40,7 +40,7 @@ type RenderTool<PARAMETERS extends z.ZodTypeAny = any> = {
>;
};

type RenderText = Renderer<
export type RenderText = Renderer<
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@shuding would renaming to TextRenderer make sense before exporting this?

[
{
/**
Expand Down