0
0

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.

Typeエイリアスを使って複雑な型定義を扱う【TypeScript】

Posted at

TypeScriptを勉強しているため備忘録として残しておく。

Typeエイリアスを使用する

let capSize: 'big' | 'small' = 'samll'

このような型定義、型注釈を変数があったとする。
この型を定義した部分をTypeエイリアスで定義しておくことができるらしい。

こんな感じ

type CapSize = 'big' | 'small'

上記のように定義して、実際使用する時は以下のように使用する。

type CapSize = 'big' | 'small'
let capSize: CpaSize = 'small'

こうしてtypeエイリアスとして定義しておくと、他のオブジェクトや変数などの至るところでtypeで定めた型を使用することができる。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?