mirror of
https://github.com/nunocoracao/blowfish.git
synced 2026-01-30 16:31:52 +01:00
config redirect
This commit is contained in:
16
node_modules/d3-brush/src/event.js
generated
vendored
Normal file
16
node_modules/d3-brush/src/event.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
export default function BrushEvent(type, {
|
||||
sourceEvent,
|
||||
target,
|
||||
selection,
|
||||
mode,
|
||||
dispatch
|
||||
}) {
|
||||
Object.defineProperties(this, {
|
||||
type: {value: type, enumerable: true, configurable: true},
|
||||
sourceEvent: {value: sourceEvent, enumerable: true, configurable: true},
|
||||
target: {value: target, enumerable: true, configurable: true},
|
||||
selection: {value: selection, enumerable: true, configurable: true},
|
||||
mode: {value: mode, enumerable: true, configurable: true},
|
||||
_: {value: dispatch}
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user