SierraSoftworks/Iridium

View on GitHub
lib/Cache.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface Cache {
    set<T>(key: string, value: T): void;
    get<T>(key: string): PromiseLike<T>;
    clear(key: string): void
}