UNPKG

@maplat/edgebound

Version:

A small library for dual-constraining a Delaunator triangulation

15 lines (13 loc) 543 B
/** * @maplat/edgebound - A library for dual-constraining a Delaunator triangulation * * This is the main entry point for the library. * Currently exports the Constrain class for edge-constrained triangulation. * Future versions will include additional functionality. */ // Main exports export { Constrain } from './variant/constrain.ts'; export type { DelaunatorLike } from './common/base.ts'; // Future exports (v0.3.0): // export { someFunction } from './future/module.ts'; // export { anotherFunction } from './future/another.ts';