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