interface CarouselViewProps {
    getNearestPlaces: (() => Place[]);
    isLoading: boolean;
    latestPlaces: Place[];
    navigation: any;
    onRefresh: (() => void);
    places: Place[];
}

Properties

getNearestPlaces: (() => Place[])

Type declaration

isLoading: boolean
latestPlaces: Place[]
navigation: any
onRefresh: (() => void)

Type declaration

    • (): void
    • Returns void

places: Place[]