File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -217,6 +217,7 @@ export interface MessageInputProps
217217 /** https://github.com/beefe/react-native-actionsheet/blob/master/lib/styles.js */
218218 actionSheetStyles ?: object ;
219219 AttachmentFileIcon ?: React . ElementType < FileIconUIComponentProps > ;
220+ SendButton : React . ElementType < SendButtonProps > ;
220221}
221222
222223export interface AttachmentProps extends MessageContentContextValue {
@@ -715,6 +716,12 @@ export interface AttachmentActionsProps {
715716 actionHandler ?( name : string , value : string ) : any ;
716717}
717718
719+ export interface SendButtonProps {
720+ title : string ;
721+ editing : Client . MessageResponse | boolean ;
722+ sendMessage ( ) : void ;
723+ }
724+
718725//================================================================================================
719726//================================================================================================
720727//
@@ -810,6 +817,7 @@ export class TypingIndicator extends React.PureComponent<
810817> { }
811818export class MessageInput extends React . PureComponent < MessageInputProps , any > { }
812819
820+ export class SendButton extends React . PureComponent < SendButtonProps > { }
813821export class MessageSimple extends React . PureComponent <
814822 MessageUIComponentProps ,
815823 any
You can’t perform that action at this time.
0 commit comments