phaser/v3/typings/dom/TouchAction.d.ts

10 lines
408 B
TypeScript
Raw Permalink Normal View History

2017-01-16 21:43:07 +00:00
/**
* Sets the touch-action property on the canvas style. Can be used to disable default browser touch actions.
*
* @method Phaser.Canvas.TouchAction
* @param {HTMLCanvasElement} canvas - The canvas to set the touch action on.
* @param {string} [value] - The touch action to set. Defaults to 'none'.
* @return {HTMLCanvasElement} The source canvas.
*/
export default function (canvas: any, value: any): any;