引数やオプションの型指定で、"xxx" | "yyy" | "zzz"
とされているときに、
タイトルのエラーに出会ったので備忘録
{
option: 'xxx' as 'xxx'
}
このようにキャストしてあげれば良いらしいです。
参考: https://bleepcoder.com/typescript/181851965/ts2322-type-string-is-not-assignable-to-type-absolute
Go to list of users who liked
More than 3 years have passed since last update.
引数やオプションの型指定で、"xxx" | "yyy" | "zzz"
とされているときに、
タイトルのエラーに出会ったので備忘録
{
option: 'xxx' as 'xxx'
}
このようにキャストしてあげれば良いらしいです。
参考: https://bleepcoder.com/typescript/181851965/ts2322-type-string-is-not-assignable-to-type-absolute
Register as a new user and use Qiita more conveniently
Go to list of users who liked