Created
August 30, 2016 02:57
-
-
Save lopezjurip/13d0ed2a7efa4e190e11717796088232 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module "react-native-button" { | |
import React, { Component } from "react"; | |
interface Props { | |
style?: React.ViewStyle; | |
styleDisabled?: React.ViewStyle; | |
onPress?: () => any; | |
} | |
export default class Button extends Component<Props, any> {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment