fix typescript error

This commit is contained in:
Simon Sarris
2015-07-08 16:43:19 -04:00
parent c8eb58771a
commit d461a36b78

View File

@@ -8761,8 +8761,8 @@ declare module go {
* This is a structure used by Map to hold key-value pairs.
*/
interface KeyValuePair<K,V> { // undocumented
key: K,
value: V
key: K;
value: V;
}
/**