ES6를 사용한다.
_
as const
const EVENT_TYPE = { MESSAGE: 'message' } as const; const EVENT_TYPE_KO = { [EVENT_TYPE.MESSAGE]: '메시지' } as const;