From e010b46f4a2294c86d5826ff640621e4dd231988 Mon Sep 17 00:00:00 2001 From: Dan Vanderkam Date: Thu, 17 Oct 2013 23:08:37 -0400 Subject: [PATCH] add dygraph-types.js --- dygraph-types.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 dygraph-types.js diff --git a/dygraph-types.js b/dygraph-types.js new file mode 100644 index 0000000..4e90693 --- /dev/null +++ b/dygraph-types.js @@ -0,0 +1,16 @@ +// This file contains typedefs and externs that are needed by the Closure Compiler. + +/** + * @typedef {{ + * px: number, + * py: number, + * isZooming: boolean, + * isPanning: boolean, + * is2DPan: boolean, + * cancelNextDblclick: boolean, + * initializeMouseDown: + * function(!Event, !Dygraph, !DygraphInteractionContext) + * }} + */ +var DygraphInteractionContext; + -- 2.7.4