(props: ModalProps)
| 120 | } & typeof defaultProps; |
| 121 | |
| 122 | const extractAnimationFromProps = (props: ModalProps) => ({ |
| 123 | animationIn: props.animationIn, |
| 124 | animationOut: props.animationOut, |
| 125 | }); |
| 126 | |
| 127 | export class ReactNativeModal extends React.Component<ModalProps, State> { |
| 128 | static propTypes = { |
no outgoing calls
no test coverage detected
searching dependent graphs…