UNPKG

496 BTypeScriptView Raw
1import { ICacheInstance } from './CacheInstance';
2import { ICacheNode } from './CacheNode';
3import { ICacheStats } from './interfaces';
4export declare const getCallStats: (success: boolean, instance: ICacheInstance) => ICacheStats;
5export declare const node: (instance: ICacheInstance, nodeId?: any) => number | ICacheStats;
6export declare function getCurrentNode(instance: ICacheInstance): ICacheNode;
7export declare function getRepoNode(cacheNodeId: any, instance: ICacheInstance): ICacheNode;