export interface MastodonMap { get(key: K): T[K]; has(key: K): boolean; set(key: K, value: T[K]): this; } export type ValueOf = T[keyof T];