Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
constructor(container: any) {
this.container = container || DOM;
this.easings = Object.assign(velocity.Easings, this.easings);
this.effects = Object.assign(velocity.Redirects, this.effects);
}
easing: 'linear'
};
this.isAnimating = false;
this.enterAnimation = { properties: ':enter', options: { easing: 'ease-in', duration: 200 } };
this.leaveAnimation = { properties: ':leave', options: { easing: 'ease-in', duration: 200 } };
this.easings = [];
this.effects = {
':enter': 'fadeIn',
':leave': 'fadeOut',
':show': 'fadeIn',
':hide': 'fadeOut'
};
this.container = container || DOM;
this.easings = Object.assign(velocity.Easings, this.easings);
this.effects = Object.assign(velocity.Redirects, this.effects);
}
constructor(container: any) {
this.container = container || DOM;
this.easings = Object.assign(velocity.Easings, this.easings);
this.effects = Object.assign(velocity.Redirects, this.effects);
}
easing: 'linear'
};
this.isAnimating = false;
this.enterAnimation = { properties: ':enter', options: { easing: 'ease-in', duration: 200 } };
this.leaveAnimation = { properties: ':leave', options: { easing: 'ease-in', duration: 200 } };
this.easings = [];
this.effects = {
':enter': 'fadeIn',
':leave': 'fadeOut',
':show': 'fadeIn',
':hide': 'fadeOut'
};
this.container = container || DOM;
this.easings = Object.assign(velocity.Easings, this.easings);
this.effects = Object.assign(velocity.Redirects, this.effects);
}