communication-react-19
Version:
React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)
33 lines • 836 B
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* @private
*/
export const MINIMUM_TYPING_INTERVAL_IN_MILLISECONDS = 8000;
/**
* @private
*/
export const PARTICIPANTS_THRESHOLD = 20;
/**
* @private
*/
export const MINUTE_IN_MS = 1000 * 60;
/**
* @private
*/
export const DEFAULT_DATA_LOSS_PREVENTION_POLICY_URL = 'https://go.microsoft.com/fwlink/?LinkId=2132837';
/**
* @private
*
* TODO: Import enum from @azure/communication-chat when ChatMessageType shows up in new release version
* (or define our type to decouple)
*/
export const ACSKnownMessageType = {
text: 'text',
html: 'html',
richtextHtml: 'richtext/html',
topicUpdated: 'topicUpdated',
participantAdded: 'participantAdded',
participantRemoved: 'participantRemoved'
};
//# sourceMappingURL=constants.js.map