mirror of https://github.com/buster-so/buster.git
fix the stream component so it can build
This commit is contained in:
parent
0c3994da00
commit
8104ad33bf
|
@ -13,8 +13,10 @@ type MarkdownComponentProps = {
|
|||
style?: React.CSSProperties;
|
||||
} & Pick<
|
||||
AnimatedMarkdownProps,
|
||||
'animation' | 'animationDuration' | 'animationTimingFunction' | 'isStreamFinished'
|
||||
>;
|
||||
'animation' | 'animationDuration' | 'animationTimingFunction'
|
||||
> & {
|
||||
isStreamFinished: boolean;
|
||||
};
|
||||
|
||||
type NonAnimatedMarkdownComponentProps = Omit<
|
||||
MarkdownComponentProps,
|
||||
|
|
Loading…
Reference in New Issue