Fix wrong space

This commit is contained in:
Dénes Harmath
2014-05-28 13:16:20 +02:00
parent 0de1592ef9
commit 790e866096
+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;
}
}