Search


Search something to see results

AbstractGestureInterface

interface AbstractGestureInterface {
    target: EventTarget;
    start(): this;
    stop(): this;
    on(event: string, callback: (args: any) => void): this;
    once(event: string, callback: (args: any) => void): this;
    off(event: string, callback: (args: any) => void): this;
}

Index

Properties

Methods

Properties

target: EventTarget

Methods

Parameters

  • event: string
  • callback: (args: any) => void

Returns this

Parameters

  • event: string
  • callback: (args: any) => void

Returns this

Parameters

  • event: string
  • callback: (args: any) => void

Returns this