import { DataType } from "src/common/data/csms/customer-service/types"; export const customerServiceStatus: DataType = { ALL: { index: -1, description: "전체", }, MEASURE_REQUIRED: { index: 0, description: "조치 필요", }, AWAITING_RESPONSE: { index: 1, description: "답변 대기", }, MEASURE_COMPLETED: { index: 2, description: "조치 완료", }, }; Object.freeze(customerServiceStatus);