Merge pull request #2261 from thSoft/patch-1

Fix wrong space
This commit is contained in:
Masahiro Wakame
2014-05-29 20:10:28 +09:00
+2 -2
View File
@@ -18,11 +18,11 @@ interface ElmComponent<P> {
ports: P;
}
interface PortToElm<V> {
interface PortToElm<V> {
send(value: V): void;
}
interface PortFromElm<V> {
subscribe(handler: (value: V) => void): void;
unsubscribe(handler: (value: V) => void): void;
}
}