react-native-animated-linear-gradient
react-native-animated-linear-gradient copied to clipboard
TypeScript support?
Any plans to TypeScript support?
@3GOMESz Not supported yet. Maybe you can use this in your typings.d.ts(not tested):
declare module 'react-native-animated-linear-gradient' {
import type { Component } from 'react'
type Point = {
x: number
y: number
}
export default class ReactNativeAnimatedLinearGradient extends Component<{
customColors?: string[]
speed?: number
points?: { start: Point; end: Point }
}> {}
}