turkmen-expo/lib/types/SliderData.type.ts

16 lines
218 B
TypeScript
Raw Normal View History

2025-10-12 17:42:17 +00:00
export interface SliderType {
data: Data;
}
export interface Data {
code: string;
banner_items: BannerItem[];
}
export interface BannerItem {
title: string;
text: string;
image: string;
link: string;
}