source: node_modules/d3-zoom/src/event.js@ e4c61dd

Last change on this file since e4c61dd was e4c61dd, checked in by istevanoska <ilinastevanoska@…>, 6 months ago

Prototype 1.1

  • Property mode set to 100644
File size: 443 bytes
Line 
1export default function ZoomEvent(type, {
2 sourceEvent,
3 target,
4 transform,
5 dispatch
6}) {
7 Object.defineProperties(this, {
8 type: {value: type, enumerable: true, configurable: true},
9 sourceEvent: {value: sourceEvent, enumerable: true, configurable: true},
10 target: {value: target, enumerable: true, configurable: true},
11 transform: {value: transform, enumerable: true, configurable: true},
12 _: {value: dispatch}
13 });
14}
Note: See TracBrowser for help on using the repository browser.