From 5adec1d48ce344723decc1ffa5d4af0e822a1968 Mon Sep 17 00:00:00 2001 From: clkim Date: Wed, 18 Mar 2026 16:23:24 +0900 Subject: [PATCH] =?UTF-8?q?fix.=20=EB=AF=B8=EC=82=AC=EC=9A=A9=20=ED=8C=8C?= =?UTF-8?q?=EC=9D=BC=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- layers/types/DataizationType.ts | 100 -------------------------------- 1 file changed, 100 deletions(-) delete mode 100644 layers/types/DataizationType.ts diff --git a/layers/types/DataizationType.ts b/layers/types/DataizationType.ts deleted file mode 100644 index 218dcfe..0000000 --- a/layers/types/DataizationType.ts +++ /dev/null @@ -1,100 +0,0 @@ -import type { CommonPeriodType } from '#layers/types/Common' - -// [S] Type in czn_homepage_brand_siteConfig.json ---------------------------------------- -interface GnbMenuType { - id: string - title: string - link: string - target: string - displayLocales?: Array -} - -interface GnbType extends GnbMenuType { - depth2List?: Array -} - -interface SnsType { - id: string - title: string - link: string - sub: string - key?: string - log?: object -} - -interface LoreType { - loreNo: number - chapter: number // 1 : 프롤로그, 2 ~ : N장 - title: string - description: string -} - -interface CharacterCardType { - id: string -} - -interface CharacterType { - id: string - cardList: Array -} - -interface FooterMenuType { - id: string - title: string - link: string - target: string - active: string -} - -interface MediaType { - id: string - title: string - logCode?: string -} - -interface MarketType { - id: string - code: string - link: string -} - -// [E] Type in czn_homepage_brand_siteConfig.json ---------------------------------------- -interface ReqGetDataization { - baseApiUrl: string - fileName?: string -} - -interface DataizationType { - gnbList?: Array - mainVideo: CommonPeriodType - promotionList?: Array - characterList?: Array - loreList?: Array - footerMenuList?: Array - mediaList?: Array - sectionList?: Array - marketList?: Array -} - -interface ResGetDataization { - code: number - message: string - value?: { - dataization?: DataizationType - } -} - -export type { - // [S] Type in czn_homepage_brand_siteConfig.json ---------------------------------------- - GnbType, - SnsType, - MediaType, - LoreType, - PromotionPreregistType, - FooterMenuType, - MarketType, - // [E] Type in czn_homepage_brand_siteConfig.json ---------------------------------------- - DataizationType, - ReqGetDataization, - ResGetDataization, -}