하단 배너
This commit is contained in:
@@ -6,6 +6,7 @@ import {
|
||||
export interface HomeBottomBannerProps {
|
||||
setBottomBannerOn: (bottomBannerOn: boolean) => void;
|
||||
bottomBannerOn: boolean;
|
||||
bannerList: Array<BannerList>;
|
||||
};
|
||||
export interface AuthRegisterProps {
|
||||
setAuthRegisterOn: (authRegisterOn: boolean) => void;
|
||||
@@ -79,14 +80,20 @@ export interface HomeGroupsParams {
|
||||
export interface HomeGroupsResponse {
|
||||
mids: Array<string>;
|
||||
};
|
||||
export interface HomeBannerListParams {};
|
||||
|
||||
export enum BannerType {
|
||||
MAIN = 'MAIN',
|
||||
BOTTOM = 'BOTTOM'
|
||||
};
|
||||
export interface HomeBannerListParams {
|
||||
bannerType: BannerType;
|
||||
};
|
||||
export interface HomeBannerListResponse {
|
||||
bannerList: Array<BannerList>
|
||||
};
|
||||
export interface BannerList {
|
||||
bannerId: number;
|
||||
title: string;
|
||||
imageUrl: string;
|
||||
linkUrl: string;
|
||||
priority: number;
|
||||
title?: string;
|
||||
imageUrl?: string;
|
||||
linkUrl?: string;
|
||||
order?: number;
|
||||
};
|
||||
Reference in New Issue
Block a user