@thi.ng/geom-api
Advanced tools
Comparing version 3.0.0 to 3.0.1
@@ -6,2 +6,10 @@ # Change Log | ||
## [3.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@3.0.0...@thi.ng/geom-api@3.0.1) (2021-10-13) | ||
**Note:** Version bump only for package @thi.ng/geom-api | ||
# [3.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-api@2.0.31...@thi.ng/geom-api@3.0.0) (2021-10-12) | ||
@@ -8,0 +16,0 @@ |
@@ -1,10 +0,10 @@ | ||
export * from "./accel"; | ||
export * from "./convex"; | ||
export * from "./cubic"; | ||
export * from "./isec"; | ||
export * from "./path"; | ||
export * from "./sample"; | ||
export * from "./shape"; | ||
export * from "./subdiv"; | ||
export * from "./tessel"; | ||
export * from "./accel.js"; | ||
export * from "./convex.js"; | ||
export * from "./cubic.js"; | ||
export * from "./isec.js"; | ||
export * from "./path.js"; | ||
export * from "./sample.js"; | ||
export * from "./shape.js"; | ||
export * from "./subdiv.js"; | ||
export * from "./tessel.js"; | ||
//# sourceMappingURL=index.d.ts.map |
18
index.js
@@ -1,9 +0,9 @@ | ||
export * from "./accel"; | ||
export * from "./convex"; | ||
export * from "./cubic"; | ||
export * from "./isec"; | ||
export * from "./path"; | ||
export * from "./sample"; | ||
export * from "./shape"; | ||
export * from "./subdiv"; | ||
export * from "./tessel"; | ||
export * from "./accel.js"; | ||
export * from "./convex.js"; | ||
export * from "./cubic.js"; | ||
export * from "./isec.js"; | ||
export * from "./path.js"; | ||
export * from "./sample.js"; | ||
export * from "./shape.js"; | ||
export * from "./subdiv.js"; | ||
export * from "./tessel.js"; |
{ | ||
"name": "@thi.ng/geom-api", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "Shared type & interface declarations for @thi.ng/geom packages", | ||
@@ -37,7 +37,7 @@ "type": "module", | ||
"dependencies": { | ||
"@thi.ng/api": "^8.0.0", | ||
"@thi.ng/vectors": "^7.0.0" | ||
"@thi.ng/api": "^8.0.1", | ||
"@thi.ng/vectors": "^7.0.1" | ||
}, | ||
"devDependencies": { | ||
"@thi.ng/testament": "^0.1.0" | ||
"@thi.ng/testament": "^0.1.1" | ||
}, | ||
@@ -53,2 +53,5 @@ "keywords": [ | ||
}, | ||
"engines": { | ||
"node": ">=12.7" | ||
}, | ||
"files": [ | ||
@@ -93,3 +96,3 @@ "*.js", | ||
}, | ||
"gitHead": "9ac1344b38b565eb894306fbf72233b6c0b2d115" | ||
"gitHead": "2e6b3d7c0f4c5686c1e9bdb4902ed7d3f90bcc19" | ||
} |
import type { Vec } from "@thi.ng/vectors"; | ||
import type { IShape } from "./shape"; | ||
import type { IShape } from "./shape.js"; | ||
export declare type SegmentType = "m" | "l" | "p" | "a" | "c" | "q" | "z"; | ||
@@ -4,0 +4,0 @@ export interface PathSegment { |
@@ -44,6 +44,7 @@ <!-- This file is generated - DO NOT EDIT! --> | ||
For NodeJS (v14.6+): | ||
For Node.js REPL: | ||
```text | ||
node --experimental-specifier-resolution=node --experimental-repl-await | ||
# with flag only for < v16 | ||
node --experimental-repl-await | ||
@@ -50,0 +51,0 @@ > const geomApi = await import("@thi.ng/geom-api"); |
27692
84
Updated@thi.ng/api@^8.0.1
Updated@thi.ng/vectors@^7.0.1