DRYな備忘録

Don't Repeat Yourself.

2014-06-09から1日間の記事一覧

TypeScriptのmodule定義とexportキーワードについてメモるよ

疑問 module定義の中でexportするのは結果分かる exportしないとスコープどうなんねん module内参照可能なのか? メモ module My { export function funcA() { console.log("This is funcA"); } export function funcC() { // call unexported function // …