Skip to content

Instantly share code, notes, and snippets.

@lopezjurip
Created August 30, 2016 02:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lopezjurip/13d0ed2a7efa4e190e11717796088232 to your computer and use it in GitHub Desktop.
Save lopezjurip/13d0ed2a7efa4e190e11717796088232 to your computer and use it in GitHub Desktop.
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