@makerdao/dai
Version:
Library for interacting with the Dai Stablecoin System.
11 lines (10 loc) • 332 B
TypeScript
export default class CacheService extends LocalService {
constructor(name?: string);
initialize(settings?: {}): void;
_storage: any;
isEnabled(): boolean;
has(key: any): boolean;
fetch(key: any): any;
store(key: any, value: any): void;
}
import { LocalService } from "@makerdao/services-core";