Skip to content

Commit

Permalink
JS/TS: Export all public symbols and reduce docs
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornharrtell committed Nov 7, 2022
1 parent df6cb5b commit e494ec7
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 9 deletions.
1 change: 0 additions & 1 deletion package.json
Expand Up @@ -87,7 +87,6 @@
"stream-buffers": "3.0.2",
"ts-node": "10.9.1",
"typedoc": "0.23.20",
"typedoc-plugin-missing-exports": "1.0.0",
"typescript": "4.8.4",
"web-streams-polyfill": "3.2.1"
}
Expand Down
16 changes: 16 additions & 0 deletions src/ts/flatgeobuf.ts
@@ -1,3 +1,19 @@
export * as generic from './generic.js';
export * as ol from './ol.js';
export * as geojson from './geojson.js';

export { Column } from './flat-geobuf/column.js';
export { Geometry } from './flat-geobuf/geometry.js';
export { Feature } from './flat-geobuf/feature.js';

export { ISimpleGeometry } from './generic/geometry.js';
export { IFeature } from './generic/feature.js';
export { FromFeatureFn } from './generic/featurecollection.js';

export { IGeoJsonFeature } from './geojson/feature';

export { default as HeaderMeta } from './header-meta.js';
export { default as ColumnMeta } from './column-meta.js';
export { default as CrsMeta } from './crs-meta.js';

export { Rect } from './packedrtree.js';
11 changes: 3 additions & 8 deletions yarn.lock
Expand Up @@ -2934,9 +2934,9 @@ mapbox-to-css-font@^2.4.1:
integrity sha512-QQ/iKiM43DM9+aujTL45Iz5o7gDeSFmy4LPl3HZmNcwCE++NxGazf+yFpY+wCb+YS23sDa1ghpo3zrNFOcHlow==

marked@^4.0.19:
version "4.2.1"
resolved "https://registry.yarnpkg.com/marked/-/marked-4.2.1.tgz#eaa32594e45b4e58c02e4d118531fd04345de3b4"
integrity sha512-VK1/jNtwqDLvPktNpL0Fdg3qoeUZhmRsuiIjPEy/lHwXW4ouLoZfO4XoWd4ClDt+hupV1VLpkZhEovjU0W/kqA==
version "4.2.2"
resolved "https://registry.yarnpkg.com/marked/-/marked-4.2.2.tgz#1d2075ad6cdfe42e651ac221c32d949a26c0672a"
integrity sha512-JjBTFTAvuTgANXx82a5vzK9JLSMoV6V3LBVn4Uhdso6t7vXrGx7g1Cd2r6NYSsxrYbQGFCMqBDhFHyK5q2UvcQ==

media-typer@0.3.0:
version "0.3.0"
Expand Down Expand Up @@ -3846,11 +3846,6 @@ type-is@^1.6.16:
media-typer "0.3.0"
mime-types "~2.1.24"

typedoc-plugin-missing-exports@1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/typedoc-plugin-missing-exports/-/typedoc-plugin-missing-exports-1.0.0.tgz#7212a2cfaba7b48264df4b4110f3a5684b5c49a1"
integrity sha512-7s6znXnuAj1eD9KYPyzVzR1lBF5nwAY8IKccP5sdoO9crG4lpd16RoFpLsh2PccJM+I2NASpr0+/NMka6ThwVA==

typedoc@0.23.20:
version "0.23.20"
resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.23.20.tgz#c6fa221762322837161932990b79416afcdc895c"
Expand Down

0 comments on commit e494ec7

Please sign in to comment.