TIMSetMsgExtensionsDeletedCallback
Introduction
Set message extensions deleted callback
Parameter details
Parameter name | Parameter type | Required | Description |
---|---|---|---|
params | TIMSetMsgExtensionsDeletedCallbackParam | yes | Param of setting message extensions deleted callback |
Returned template
void
Return value details
This function has no return value
Code example
TIMSetMsgExtensionsDeletedCallback: () => {
let param: TIMSetMsgExtensionsDeletedCallbackParam = {
callback: (...args) => {
const [message_id, message_extension_key_array, user_data] = args
}
}
return timRenderInstance.TIMSetMsgExtensionsDeletedCallback(param);
}