UNPKG

@barba/core

Version:

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

10 lines (9 loc) 261 B
/** * @module typings/core */ export interface ICacheData { action?: CacheAction; request?: CacheRequest; } export declare type CacheRequest = Promise<string | void>; export declare type CacheAction = 'init' | 'enter' | 'click' | 'prefetch';