A readonly map-like object type alias.
Identifies the key type.
Identifies the value type.
0.14.0
const themes: ReadonlyRecord<string, string> = { light: "#ffffff", dark: "#000000"};// themes.light = "#ff0000"; // Error: cannot assign to a read-only property Copy
const themes: ReadonlyRecord<string, string> = { light: "#ffffff", dark: "#000000"};// themes.light = "#ff0000"; // Error: cannot assign to a read-only property
A readonly map-like object type alias.