Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/s3si/src/cache.ts>MemoryCache

Export your battles from SplatNet to https://stat.ink
Latest
class MemoryCache
implements Cache
import { MemoryCache } from "https://deno.land/x/s3si@gui-v0.4.20/src/cache.ts";

Properties

private
cache: Record<string, unknown>

Methods

read<T>(key: string): Promise<T | undefined>
write<T>(key: string, value: T): Promise<void>