Created
June 29, 2021 22:16
-
-
Save lenivene/00fb99508ce87c9cbd984ed81b255d3c 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-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