@melchyore/adonis-cache
Version:
Cache package for AdonisJS V5
11 lines (10 loc) • 443 B
TypeScript
declare module '@ioc:Adonis/Core/Application' {
import Cache, { AbstractCtor, Constructor, BaseStoreContract, TaggableStoreContract } from '@ioc:Adonis/Addons/Cache';
interface ContainerBindings {
'Adonis/Addons/Cache': typeof Cache;
'Adonis/Addons/Cache/Stores': {
BaseCacheStore: Constructor<BaseStoreContract>;
TaggableStore: AbstractCtor<TaggableStoreContract>;
};
}
}