Add updateChat function to chatMessagePropsType

This commit is contained in:
anovazzi1 2024-02-26 11:19:25 -03:00
commit 1c36202374

View file

@ -524,6 +524,11 @@ export type chatMessagePropsType = {
chat: ChatMessageType;
lockChat: boolean;
lastMessage: boolean;
updateChat: (
chat: ChatMessageType,
message: string,
stream_url: string | null
) => void;
};
export type formModalPropsType = {