はじめに
この記事は【typeof型演算子】についての備忘録である。
【typeof型演算子】とは
- 変数から型を抽出する型演算子である。
const point = { x: 135, y: 35 };
type Point = typeof point;
// 上記は以下の型になる
type Point = {
x: number;
y: number;
}
この記事は【typeof型演算子】についての備忘録である。
const point = { x: 135, y: 35 };
type Point = typeof point;
// 上記は以下の型になる
type Point = {
x: number;
y: number;
}
コメント