11 lines
178 B
JavaScript
Vendored
11 lines
178 B
JavaScript
Vendored
class AutomaticComponent {
|
|
/**
|
|
* Create a new component instance.
|
|
*/
|
|
constructor() {
|
|
this.passive = true;
|
|
}
|
|
}
|
|
|
|
module.exports = AutomaticComponent;
|