Skip to content

Interface: MemoryStoreLike<T>

Makaio Framework


Makaio Framework / tools-core/testing / MemoryStoreLike

Defined in: ../../../tools/core/src/testing/index.ts:38

Minimal store interface used by the shared suite.

Compatible with MemoryStore<T, []> and MemoryStore<T, [optional?]> since the suite only calls get(sessionId) with no extra args.

T

delete(sessionId): boolean

Defined in: ../../../tools/core/src/testing/index.ts:41

string

boolean


get(sessionId): T

Defined in: ../../../tools/core/src/testing/index.ts:39

string

T


has(sessionId): boolean

Defined in: ../../../tools/core/src/testing/index.ts:40

string

boolean