Files
openlayers/externs/fastclick.js
2015-04-14 16:20:48 +02:00

27 lines
468 B
JavaScript

/**
* @fileoverview Externs for FastClick 1.0.6
* @see https://github.com/ftlabs/fastclick
* @externs
*/
/**
* @type {Object}
* @const
*/
var FastClick = {};
/**
* @typedef {{
* touchBoundary: (number|undefined),
* tapDelay: (number|undefined),
* tapTimeout: (number|undefined)
* }}
*/
FastClick.AttachOptions;
/**
* @param {Element} layer
* @param {FastClick.AttachOptions=} opt_options
*/
FastClick.attach = function(layer, opt_options) {};