17 lines
412 B
TypeScript
17 lines
412 B
TypeScript
import { ViewStyle } from "react-native";
|
|
import { SeparatorOrientationType, SeparatorType } from "../../constants";
|
|
|
|
export interface ItemSeparatorData {
|
|
separatorType: SeparatorType;
|
|
separatorStyle?: ViewStyle;
|
|
orientationType: SeparatorOrientationType;
|
|
gradientData?: {
|
|
height: number;
|
|
colorsArray: string[];
|
|
};
|
|
}
|
|
|
|
export interface ItemSeparatorProps {
|
|
separatorData: ItemSeparatorData;
|
|
}
|