| import { Adapter } from '../Low.js'; | |
| export declare class Memory<T> implements Adapter<T> { | |
| private data; | |
| read(): Promise<T | null>; | |
| write(obj: T): Promise<void>; | |
| } | |
| import { Adapter } from '../Low.js'; | |
| export declare class Memory<T> implements Adapter<T> { | |
| private data; | |
| read(): Promise<T | null>; | |
| write(obj: T): Promise<void>; | |
| } | |