Skip to content

Commit

Permalink
missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterNorthwoods committed Jul 8, 2015
1 parent 31d6b1c commit 088ffce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions release/gojs.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7213,7 +7213,7 @@ declare module go {
* This helper structure for DraggingTool holds the original location Point.
*/
interface DraggingInfo { // undocumented
point: Point
point: Point;
}

/**
Expand Down Expand Up @@ -8529,7 +8529,7 @@ declare module go {
iterator: Iterator<T>;

/**This read-only property returns the current index to the item in the collection, assuming .next has just returned true.*/
key;
key: any;

/**This read-only property returns the current item in the collection, assuming .next has just returned true.*/
value: T;
Expand Down Expand Up @@ -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;
}

/**
Expand Down

0 comments on commit 088ffce

Please sign in to comment.