mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
359 B
TypeScript
13 lines
359 B
TypeScript
import MapBrowserEvent from './MapBrowserEvent';
|
|
import PluggableMap, { FrameState } from './PluggableMap';
|
|
|
|
export default class MapBrowserPointerEvent extends MapBrowserEvent {
|
|
constructor(
|
|
type: string,
|
|
map: PluggableMap,
|
|
pointerEvent: PointerEvent,
|
|
opt_dragging?: boolean,
|
|
opt_frameState?: FrameState,
|
|
);
|
|
}
|