2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Typescript】型 'string | undefined' の引数を 'string' のパラメーターに割り当てることができません。を解決したい

Posted at

はじめに

環境変数を読み込むと型がstring | undefined となり、このまま関数に渡そうとするとタイトルのエラーが出ました。
エラーで検索をかけると型定義ファイルを自作する記事が多かったので試していたのですが、もっと簡単に書けたのでまとめます。

解決方法

envを読み込むタイミングで型の絞り込み(narrowing)をします

const HOGE = process.env.REACT_APP_HOGE ?? "";

おわりに

思ったより時間をかけてしまいました。しばらくはnarrowingにお世話になりそうです

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?