Skip to content

Commit

Permalink
Export KDTree
Browse files Browse the repository at this point in the history
  • Loading branch information
havfo committed Mar 24, 2023
1 parent 97c341f commit ffbf448
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions lib/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ export { skipIfClosed } from './decorators';
export { Next, Middleware, Pipeline } from './Middleware';
export { MediaSourceType } from './MediaSourceType';
export { MediaKind } from './MediaKind';
export { KDTree, KDPoint } from './KDTree';
5 changes: 4 additions & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.MediaKind = exports.MediaSourceType = exports.Pipeline = exports.skipIfClosed = exports.Logger = exports.List = exports.BaseConnection = exports.RawSocket = exports.IOServerConnection = exports.IOClientConnection = exports.SocketTimeoutError = void 0;
exports.KDPoint = exports.KDTree = exports.MediaKind = exports.MediaSourceType = exports.Pipeline = exports.skipIfClosed = exports.Logger = exports.List = exports.BaseConnection = exports.RawSocket = exports.IOServerConnection = exports.IOClientConnection = exports.SocketTimeoutError = void 0;
var SocketTimeoutError_1 = require("./SocketTimeoutError");
Object.defineProperty(exports, "SocketTimeoutError", { enumerable: true, get: function () { return SocketTimeoutError_1.SocketTimeoutError; } });
var IOClientConnection_1 = require("./IOClientConnection");
Expand All @@ -23,3 +23,6 @@ var MediaSourceType_1 = require("./MediaSourceType");
Object.defineProperty(exports, "MediaSourceType", { enumerable: true, get: function () { return MediaSourceType_1.MediaSourceType; } });
var MediaKind_1 = require("./MediaKind");
Object.defineProperty(exports, "MediaKind", { enumerable: true, get: function () { return MediaKind_1.MediaKind; } });
var KDTree_1 = require("./KDTree");
Object.defineProperty(exports, "KDTree", { enumerable: true, get: function () { return KDTree_1.KDTree; } });
Object.defineProperty(exports, "KDPoint", { enumerable: true, get: function () { return KDTree_1.KDPoint; } });
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "edumeet-common",
"version": "0.4.0",
"version": "0.4.1",
"description": "Common code for edumeet",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ export { Logger } from './Logger';
export { skipIfClosed } from './decorators';
export { Next, Middleware, Pipeline } from './Middleware';
export { MediaSourceType } from './MediaSourceType'
export { MediaKind } from './MediaKind'
export { MediaKind } from './MediaKind'
export { KDTree, KDPoint } from './KDTree';

0 comments on commit ffbf448

Please sign in to comment.