mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
9 lines
274 B
TypeScript
9 lines
274 B
TypeScript
import Event from './events/Event';
|
|
import PluggableMap, { FrameState } from './PluggableMap';
|
|
|
|
export default class MapEvent extends Event {
|
|
constructor(type: string, map: PluggableMap, opt_frameState?: FrameState);
|
|
frameState: FrameState;
|
|
map: PluggableMap;
|
|
}
|