Skip to content

Commit

Permalink
export types
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperCater committed Jan 16, 2024
1 parent 8f415c9 commit cbfcbcd
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
Date format is `MM/DD/YYYY`.

## [0.2.1] - 1/16/2024

### Changed

- Types are now exported from index.ts

## [0.2.0] - 1/16/2024

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wrapblox",
"version": "0.2.0",
"version": "0.2.1",
"description": "A wrapper for Roblox's API",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
Expand Down
7 changes: 6 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -658,4 +658,9 @@ class WrapBlox {
}


export default WrapBlox;
export default WrapBlox;
// Export types
export * from "./types/bases.js";
export * from "./types/groups.js";
export * from "./types/misc.js";
export * from "./types/users.js";

0 comments on commit cbfcbcd

Please sign in to comment.