Skip to main content
Module

x/fun/record.ts>ReadonlyRecord

A collection of algebraic data types, lenses, and schemables based on a light weight higher kinded type implementation. Written for deno.
Go to Latest
type alias ReadonlyRecord
import { type ReadonlyRecord } from "https://deno.land/x/fun@v2.0.0-alpha.6/record.ts";

ReadonlyRecord is an alias of Readonly<Record<string, A>>. It's meant to be used wherever a Record can be used.

definition: Readonly<Record<string, A>>