@aws/mynah-ui 4.36.4 → 4.36.5-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -32,9 +32,13 @@ export declare class ChatItemCardContent {
32
32
  private readonly typewriterId;
33
33
  private lastAnimationDuration;
34
34
  private updateTimer;
35
+ private isStreamActive;
35
36
  constructor(props: ChatItemCardContentProps);
36
37
  private readonly getCardContent;
37
38
  private readonly updateCard;
38
39
  readonly updateCardStack: (updateWith: Partial<ChatItemCardContentProps>) => void;
40
+ readonly endStream: () => void;
41
+ private readonly updateDOMContent;
42
+ private readonly flushRemainingUpdates;
39
43
  readonly getRenderDetails: () => CardRenderDetails;
40
44
  }
@@ -59,5 +59,6 @@ export declare class ChatItemCard {
59
59
  readonly updateCardStack: (updateWith: Partial<ChatItem>) => void;
60
60
  readonly clearContent: () => void;
61
61
  readonly getRenderDetails: () => CardRenderDetails;
62
+ readonly endStream: () => void;
62
63
  readonly cleanFollowupsAndRemoveIfEmpty: () => boolean;
63
64
  }