16 lines
218 B
TypeScript
16 lines
218 B
TypeScript
|
|
export interface SliderType {
|
||
|
|
data: Data;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface Data {
|
||
|
|
code: string;
|
||
|
|
banner_items: BannerItem[];
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface BannerItem {
|
||
|
|
title: string;
|
||
|
|
text: string;
|
||
|
|
image: string;
|
||
|
|
link: string;
|
||
|
|
}
|