Skip to content

Commit

Permalink
feat: Export types
Browse files Browse the repository at this point in the history
  • Loading branch information
bennycode committed Jun 26, 2024
1 parent da180a6 commit 875f94e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"dev": "cross-env TSIMP_DIAG=error node --inspect --import=tsimp/import ./src/start.ts",
"dist": "npm run clean && npm run build",
"docs": "npm run docs:build",
"docs:build": "typedoc ./src/APIClient.ts",
"docs:build": "typedoc ./src/index.ts",
"fix": "npm run fix:format && npm run fix:lint",
"fix:format": "npm run check:format -- --write",
"fix:lint": "npm run check:lint -- --fix --quiet",
Expand Down
8 changes: 8 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export * from './api/account/AccountAPI.js';
export * from './api/history/HistoryAPI.js';
export * from './api/metadata/MetadataAPI.js';
export * from './api/order/OrderAPI.js';
export * from './api/pie/PieAPI.js';
export * from './api/portfolio/PortfolioAPI.js';
export * from './APIClient.js';
export * from './RESTClient.js';

0 comments on commit 875f94e

Please sign in to comment.