mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
19 lines
495 B
TypeScript
19 lines
495 B
TypeScript
import { Coordinate } from './coordinate';
|
|
import MapEvent from './MapEvent';
|
|
import { Pixel } from './pixel';
|
|
import PluggableMap, { FrameState } from './PluggableMap';
|
|
|
|
export default class MapBrowserEvent extends MapEvent {
|
|
constructor(
|
|
type: string,
|
|
map: PluggableMap,
|
|
browserEvent: Event,
|
|
opt_dragging?: boolean,
|
|
opt_frameState?: FrameState,
|
|
);
|
|
coordinate: Coordinate;
|
|
dragging: boolean;
|
|
pixel: Pixel;
|
|
originalEvent: Event;
|
|
}
|