UNPKG

@gathertown/uikit-react-native

Version:

Sendbird UIKit for React Native: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.

17 lines (16 loc) 456 B
export interface ImageCompressionConfigInterface { compressionRate: number; width?: number; height?: number; } declare class ImageCompressionConfig { private _config; static DEFAULT: { COMPRESSION_RATE: number; }; constructor(_config: ImageCompressionConfigInterface); get compressionRate(): number; get width(): number | undefined; get height(): number | undefined; } export default ImageCompressionConfig;