Files
cheatsheets/flowtype.md
Rico Sta. Cruz e189ce7c57 Update
2015-02-26 14:17:12 +08:00

292 B

title, layout
title layout
Flow default

Simple failing example

/* @flow */

function foo(x) { return x * 10; }
foo('Hello, world!');

Annotations

// Simple
function foo(x: string, y: number): string { ... }

// Arrays
function total(numbers: Array<number>) { ... }