Compare commits

...

4 Commits

Author SHA1 Message Date
6d7381de7d v2.0.0-beta.1 2021-04-20 10:07:44 +02:00
00e61b370f Fixed interface not being correctly exported
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-04-20 10:07:10 +02:00
3b6c5886ea v2.0.0-beta 2021-04-19 16:59:10 +02:00
96cbea47e2 Added Typing to exports
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-04-19 16:56:44 +02:00
3 changed files with 7 additions and 2 deletions

1
.gitignore vendored
View File

@ -4,4 +4,5 @@ node_modules
*.js
*.d.ts
!interfaces.d.ts
!main.d.ts
test.ts

4
main.d.ts vendored Normal file
View File

@ -0,0 +1,4 @@
import TCGdex from './tcgdex'
export * from './interfaces'
export default TCGdex

View File

@ -1,8 +1,8 @@
{
"name": "@tcgdex/sdk",
"version": "2.0.0-alpha.3",
"version": "2.0.0-beta.1",
"main": "./tcgdex.js",
"types": "./tcgdex.d.ts",
"types": "./main.d.ts",
"repository": "https://github.com/tcgdex/javascript-sdk.git",
"license": "MIT",
"devDependencies": {