We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5accd5c commit d4d15eeCopy full SHA for d4d15ee
index.d.ts
@@ -0,0 +1,14 @@
1
+import * as React from "react";
2
+import * as ReactNative from "react-native";
3
+
4
+declare module "react-native-linear-gradient" {
5
6
+ interface LinearGradientProps extends ReactNative.ViewProperties {
7
+ colors: string[],
8
+ start?: { x: number, y: number },
9
+ end?: { x: number, y: number },
10
+ locations?: number[]
11
+ }
12
13
+ export default class LinearGradient extends React.Component<LinearGradientProps, any> { }
14
+}
0 commit comments