@exadel/esl
Version:
Exadel Smart Library (ESL) is the lightweight custom elements library that provide a set of super-flexible components
10 lines (9 loc) • 376 B
TypeScript
/**
* Custom error that ESLCarousel throws when navigation is rejected due to ongoing animation.
* By default, it does not include a stack trace to avoid cluttering the console.
*/
export declare class ESLCarouselNavRejection extends Error {
/** Debug mode to enable stack trace in the error log */
static debug: boolean;
constructor(index: number | string);
}