anim-scroll
Version:
Small library to animate your web pages
28 lines (21 loc) • 489 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.AnimationError = exports.OptionsError = void 0;
class OptionsError extends Error {
constructor(msg) {
super();
this.message = msg;
Error.captureStackTrace(this);
}
}
exports.OptionsError = OptionsError;
class AnimationError extends Error {
constructor(msg) {
super();
this.message = msg;
Error.captureStackTrace(this);
}
}
exports.AnimationError = AnimationError;
;