@azure/communication-react
Version:
React library for building modern communication user experiences utilizing Azure Communication Services
9 lines • 332 B
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @private
*/
export const convertChatMessage = (message, status = 'delivered', clientMessageId) => {
return Object.assign(Object.assign({}, message), { clientMessageId: clientMessageId, status });
};
//# sourceMappingURL=convertChatMessage.js.map