UNPKG

@maplat/edgeruler

Version:

A small library for dual-constraining a Delaunator triangulation

16 lines (14 loc) 610 B
/** * @maplat/edgeruler - 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 { default as Constrain } from './variant/constrain'; export { default } from './variant/constrain'; export type { DelaunatorLike } from './common/base'; // Future exports (v0.3.0): // export { someFunction } from './future/module.ts'; // export { anotherFunction } from './future/another.ts';