JavaScriptプログラムに関する各種メモ書き:タグ「typescript」での検索

typescript 引数の書き方

interface Props {
  hoge: string,
  fuga: string
}

// propsで受けたい場合
function myfunc01( props:Props ){
  console.log(props.hoge)
  console.log(props.fuga)
}

// 「props.」 が邪魔な場合はこのように書ける
function myfunc01( {hoge,fuga}:Props ){
  console.log(hoge)
  console.log(fuga)
}
No.2188
07/19 13:59

edit

typescript