adonis5-cache
Version:
Cache provider for AdonisJS 5
5 lines (4 loc) • 377 B
TypeScript
import { AsyncFunction, TaggableStorageContract, TagPayloadContract } from '@ioc:Adonis/Addons/Adonis5-Cache';
export declare function isTaggableStorage(storage: object): storage is TaggableStorageContract;
export declare function isTagPayloadContract(storage: object): storage is TagPayloadContract;
export declare function isFunction(value: unknown): value is AsyncFunction;