Skip to main content
Module

x/mtkruto/mod.ts>StorageMemory

Cross-runtime JavaScript library for building Telegram clients
Go to Latest
class StorageMemory
implements Storage
Re-export
import { StorageMemory } from "https://deno.land/x/mtkruto@0.1.702/mod.ts";

Constructors

new
StorageMemory()

Properties

protected
map: Map<string, unknown>
readonly
mustSerialize: boolean
readonly
supportsFiles: boolean

Methods

branch(id: string): Storage
get<T>(key: readonly StorageKeyPart[]): T | null
getMany<T>(filter: GetManyFilter, params?: { limit?: number; reverse?: boolean; }): Generator<[readonly StorageKeyPart[], T]>
incr(key: readonly StorageKeyPart[], by: number)
set(key_: readonly StorageKeyPart[], value: unknown): MaybePromise<void>