변수, 상수, 파라미터 등 분명히 값을 갖고 있고 런타임에서 존재하는 것
```typescript
type MyType = number;
const a: MyType = 1;
// ---👆----------👆-- Value space
function foo(args: Args) {
// --👆-------👆----- Value space
// -----------------👆- Type space
// do something
}
```
---
참조 강의: https://inf.run/FVDi