Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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>>;

§Type Parameters

§Type

§
Readonly<Record<string, A>>
[src]