From 088ffce8df2be0f23638999e20c7224d011fe3c1 Mon Sep 17 00:00:00 2001 From: WalterNorthwoods Date: Wed, 8 Jul 2015 18:40:47 -0400 Subject: [PATCH] missing semicolons --- release/gojs.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/release/gojs.d.ts b/release/gojs.d.ts index 063a1b3a8..e773dcc2b 100644 --- a/release/gojs.d.ts +++ b/release/gojs.d.ts @@ -7213,7 +7213,7 @@ declare module go { * This helper structure for DraggingTool holds the original location Point. */ interface DraggingInfo { // undocumented - point: Point + point: Point; } /** @@ -8529,7 +8529,7 @@ declare module go { iterator: Iterator; /**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; @@ -8761,8 +8761,8 @@ declare module go { * This is a structure used by Map to hold key-value pairs. */ interface KeyValuePair { // undocumented - key: K, - value: V + key: K; + value: V; } /**