You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
type statusCode = "OK" | "ERROR" | "NOT_FOUND";
|
|
|
|
// 매핑
|
|
const statMessage: Record<statusCode, string> = {
|
|
OK: "정상 처리",
|
|
ERROR: "에러 발생",
|
|
NOT_FOUND: "찾을 수 없음"
|
|
};
|
|
|
|
console.log(statMessage.NOT_FOUND); |