字面量类型
- 字面量类型
let str1: string = "hi";
const str2 = "hi";
let age: 18 = 18;
function changeDirection(dir: "left" | "right" | "up" | "down") {
console.log(dir);
}
// 只能传上面四个参数
changeDirection("left");
let str1: string = "hi";
const str2 = "hi";
let age: 18 = 18;
function changeDirection(dir: "left" | "right" | "up" | "down") {
console.log(dir);
}
// 只能传上面四个参数
changeDirection("left");