Skip to content

Commit

Permalink
fix(types): fix types importing
Browse files Browse the repository at this point in the history
  • Loading branch information
neki-dev committed Aug 27, 2024
1 parent 6075d60 commit 7ddfebf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions dist/types.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import type { ResourceLimits } from 'worker_threads';
export * from './task/types';
export * from './layer';
export type PathfindingConfig = {
/**
* Finding process loop rate
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pathfinding-worker",
"description": "Fast node.js pathfinding on workers for grid-based games",
"version": "2.1.3",
"version": "2.1.4",
"keywords": [
"astar",
"dijkstra",
Expand Down
1 change: 1 addition & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import type { ResourceLimits } from 'worker_threads';

export * from './task/types';
export * from './layer';

export type PathfindingConfig = {
/**
Expand Down

0 comments on commit 7ddfebf

Please sign in to comment.