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;
|
style?: React.CSSProperties;
|
||||||
} & Pick<
|
} & Pick<
|
||||||
AnimatedMarkdownProps,
|
AnimatedMarkdownProps,
|
||||||
'animation' | 'animationDuration' | 'animationTimingFunction' | 'isStreamFinished'
|
'animation' | 'animationDuration' | 'animationTimingFunction'
|
||||||
>;
|
> & {
|
||||||
|
isStreamFinished: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
type NonAnimatedMarkdownComponentProps = Omit<
|
type NonAnimatedMarkdownComponentProps = Omit<
|
||||||
MarkdownComponentProps,
|
MarkdownComponentProps,
|
||||||
|
|
Loading…
Reference in New Issue