/** * @module typings/core */ export interface ICacheData { action?: CacheAction; request?: CacheRequest; } export declare type CacheRequest = Promise; export declare type CacheAction = 'init' | 'enter' | 'click' | 'prefetch';