chore: ignoreLocal ts type

This commit is contained in:
Tristan Yang
2023-05-06 16:41:07 +08:00
parent 53f98ff5c0
commit 36f6b7e130
+1 -1
View File
@@ -19,7 +19,7 @@ interface SendMessagesDTO {
channels: number[];
}
type SendMessageDTO = { type: ContentTypeKey } & Partial<MessagePayload>
type SendMessageDTO = { type: ContentTypeKey } & Partial<MessagePayload> & { ignoreLocal?: boolean }
const useSendMessage = (props?: Props) => {
const { context = "user", from = 0, to = 0 } = props || {};
const dispatch = useAppDispatch();