Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/endofunctor/src/morphism.ts>BranchMap

🌐 Vixeny: At the forefront of modern web development, Vixeny stands as a runtime-independent, efficiency-driven library dedicated to upholding the principles of functional purity. It's crafted to empower developers with a robust foundation for creating scalable, maintainable, and high-performance web applications.
Go to Latest
type alias BranchMap
import { type BranchMap } from "https://deno.land/x/endofunctor@v0.1.30/src/morphism.ts";
definition: [K in keyof T]: T[K] extends Morphism<{ type: "morphism"; branch: true; }> ? Morphism<{ type: "morphism"; branch: true; }> : T[K] extends { f: any; } ? any : never