ReadonlyRecord
import type { ReadonlyRecord } from "https://raw.githubusercontent.com/baetheus/fun/main/record.ts";
ReadonlyRecord is an alias of Readonly<Record<string, A>>. It's meant to be used wherever a Record can be used.
type ReadonlyRecord<A> = Readonly<Record<string, A>>;