UNPKG

@barba/core

Version:

Create badass, fluid and smooth transition between your website's pages

20 lines (19 loc) 379 B
/** * @barba/core/modules/ignore * <br><br> * ## Manage ignore options. * * - cache * - prefetch * * @module core/modules/ignore * @preferred */ /***/ import { IgnoreOption } from '../defs'; export declare class Ignore { private _ignoreAll; private _ignoreRegexes; constructor(ignore: IgnoreOption); checkUrl(url: string): boolean; }