import { DataType } from "src/common/data/csms/customer-service/types"; export const customerServiceContactChannel: DataType = { NONE: { index: -1, description: "-", }, VISIT: { index: 0, description: "방문", }, PHONE_CALL: { index: 1, description: "전화", }, EMAIL: { index: 2, description: "이메일", }, }; Object.freeze(customerServiceContactChannel);