fix the stream component so it can build

This commit is contained in:
dal 2025-07-24 09:49:05 -06:00
parent 0c3994da00
commit 8104ad33bf
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
1 changed files with 4 additions and 2 deletions

View File

@ -13,8 +13,10 @@ type MarkdownComponentProps = {
style?: React.CSSProperties;
} & Pick<
AnimatedMarkdownProps,
'animation' | 'animationDuration' | 'animationTimingFunction' | 'isStreamFinished'
>;
'animation' | 'animationDuration' | 'animationTimingFunction'
> & {
isStreamFinished: boolean;
};
type NonAnimatedMarkdownComponentProps = Omit<
MarkdownComponentProps,