Augmented Usamimi

it { is_expected.to be_blog.written_by(izumin5210) }

flowtype

React.ComponentにFlowで型をつけるスニペット

v0.38.0時点. こんな感じに定義されてる. https://github.com/facebook/flow/blob/v0.38.0/lib/react.js#L224 declare module react { // snip. declare var Component: typeof React$Component; declare var PureComponent: typeof React$PureComponent; …

Immutable.RecordとFlow

Immutable.jsを導入するとやりたくなることランキング3位くらいに,Immutable.Recordを継承してモデルクラス的なものを作るというものがある. また,Flowを利用してこのクラスに型定義をつけることができれば,さいきょうのモデルクラスを実装できる気がし…