create index.js

This commit is contained in:
Joeri Exelmans 2025-05-10 12:08:43 +02:00
parent 9c79d13b1f
commit b68092d058
4 changed files with 56 additions and 3 deletions

View file

@ -5,7 +5,7 @@ import { zip } from "../util/util.js";
import { map } from "./list.js";
import { getLeft, getRight } from "./product.js";
import { makeConstructor, makeGetters } from "./struct.js";
import { fnType, prodType } from "./type_constructors.js";
import { fnType, prodType } from "./type_constructors.types.js";
// 'fields' is an array of (name: string, type: Type) pairs.

View file

@ -1,4 +1,3 @@
import { deepEqual } from "../util/util.js";
import { inspect } from "node:util";
// a -> Value<a>