devlog

フロントエンドエンジニアの技術ブログ

2019-08-05から1日間の記事一覧

TypeScriptでのsetIntervalを行うと「Type 'Timer' is not assignable to type 'number'.」とエラーが出た。

TypeScript(TSX)中でsetIntervalを行うと「Type 'Timer' is not assignable to type 'number'.」とエラーが出た。 ブラウザ環境下で実行する場合は、window.setInterval()と書いて、戻り値を: numberにする事で解決する github.com

React + TypeScript で State をもつ class コンポーネントを作成するときは、Generics の第二引数に State の型を指定する

タイトルのまま。 「React + TypeScript で State をもつ class コンポーネントを作成するときは、Generics の第二引数に State の型を指定する」 import React, {Component} from "react"; type AppState = { count: number } class App extends Component<…

@ 2019 devlog