UNPKG

@rohitninawe/chat-uikit-react-native

Version:

Ready-to-use Chat UI Components for React Native

25 lines (23 loc) 577 B
export interface OngoingCallStyleInterface { minWidth?: number, minHeight?: number, maxWidth?: number, maxHeight?: number, } export class OngoingCallStyle implements OngoingCallStyleInterface { minWidth?: number minHeight?: number maxWidth?: number maxHeight?: number constructor({ minWidth, minHeight, maxWidth, maxHeight, }: OngoingCallStyleInterface) { this.minWidth = minWidth; this.minHeight = minHeight; this.maxWidth = maxWidth; this.maxHeight = maxHeight; } }