/** A shared-memory value that can be read with `load()` and written with `store()`. */ export interface Loadable { load(): T; store(value: T): void; }