7 lines
302 B
JavaScript
7 lines
302 B
JavaScript
import { makeListModule } from "./list_common.js";
|
|
import { Typed } from "../typed.js";
|
|
import { lsType } from "../type_registry.js";
|
|
|
|
export const Module = lsType(Typed); // a Module is a list of Typeds
|
|
|
|
export const ModuleModule = makeListModule(Typed); // the module containing operations on Module
|