UNPKG
venny
Version:
latest (0.1.0)
0.1.0
0.0.4
0.0.3
0.0.2
0.0.1
Declarative Venn diagrams
github.com/pshihn/venn
pshihn/venn
venny
/
bin
/
prop-change-event.js
12 lines
(11 loc)
•
271 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
class
PropChangeEvent
extends
Event
{
constructor
(propName) {
super
(
'prop-change'
, { cancelable:
true
, bubbles:
true
, composed:
true
, });
this
.propName =
''
;
this
.propName = propName; } }