9 lines
179 B
TypeScript
9 lines
179 B
TypeScript
import { ViewStyle } from "react-native";
|
|
|
|
export interface GradientData {
|
|
gradientColors?: string[];
|
|
defaultColors?: string[];
|
|
orientation?: string;
|
|
style?: ViewStyle;
|
|
}
|