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
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/core/rsc/stream-ui/index.tsx
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
export { streamUI } from './stream-ui';

export type { RenderText, RenderTool };
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