communication-react-19
Version:
React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)
34 lines • 861 B
TypeScript
/**
* Strings used by the {@link ChatComposite} directly.
*
* This strings are in addition to those used by the components from the component library.
*
* @public
*/
export interface ChatCompositeStrings {
/**
* Chat list header text
*/
chatListHeader: string;
/**
* Upload Attachment Button text
*/
uploadAttachment: string;
/**
* Error Message for image data is not provided for image upload
*/
uploadImageDataNotProvided: string;
/**
* Error Message for upload image is too large
*/
uploadImageIsTooLarge: string;
/**
* Error Message for unsupported image extension for image upload
*/
uploadImageExtensionIsNotAllowed: string;
/**
* Error Message for unable to upload image
*/
uploadImageFailed: string;
}
//# sourceMappingURL=Strings.d.ts.map