Skip to content

Instantly share code, notes, and snippets.

@lenivene
Created June 29, 2021 22:16
Show Gist options
  • Save lenivene/00fb99508ce87c9cbd984ed81b255d3c to your computer and use it in GitHub Desktop.
Save lenivene/00fb99508ce87c9cbd984ed81b255d3c to your computer and use it in GitHub Desktop.
declare module "react-native-radial-gradient" {
import * as ReactNative from "react-native";
import * as React from "react";
type Props = ReactNative.ViewPropTypes & {
style?: ReactNative.StyleProp<ReactNative.ViewStyle>;
colors: string[];
stops: number[];
center: number[];
radius: number;
}
declare class RadialGradientComponent extends React.Component<Props> {};
export default RadialGradientComponent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment