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 {
@@ -719,6 +720,12 @@ export interface AttachmentActionsProps {
719720 actionHandler ?( name : string , value : string ) : any ;
720721}
721722
723+ export interface SendButtonProps {
724+ title : string ;
725+ editing : Client . MessageResponse | boolean ;
726+ sendMessage ( ) : void ;
727+ }
728+
722729//================================================================================================
723730//================================================================================================
724731//
@@ -814,6 +821,7 @@ export class TypingIndicator extends React.PureComponent<
814821> { }
815822export class MessageInput extends React . PureComponent < MessageInputProps , any > { }
816823
824+ export class SendButton extends React . PureComponent < SendButtonProps > { }
817825export class MessageSimple extends React . PureComponent <
818826 MessageUIComponentProps ,
819827 any
You can’t perform that action at this time.
0 commit comments