Select the types of activity you want to include in your feed.
1/** A shared-memory value that can be read with `load()` and written with `store()`. */ 2export interface Loadable<T> { 3 load(): T; 4 store(value: T): void; 5}