型エイリアス
type alias
type synonymとも
型 に別名をつける機能
型は相互互換が保たれる
↔ newtype
TypeScript
code:alias.ts
type Name = string;
const str: string = "hello";
const name: Name = str;