#MOC #リテラル型
- [[🗃️TypeScript]]の特定の値だけを代入可能にする型
```ts
const status: "requested" = "requested";
```
## MOC
### 📚ドキュメント
- [リテラル型 - TypeScript Deep Dive 日本語版](https://typescript-jp.gitbook.io/deep-dive/type-system/literal-types)
### 📖ノウハウ
- [[📗リテラル型を渡すときの工夫]]
### 💁トラブルシューティング