Skip to content

Commit 994aa5c

Browse files
committed
fix: nothing was exported
1 parent 05c2952 commit 994aa5c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "helloasso",
33
"module": "index.ts",
4-
"version": "0.0.1",
4+
"version": "0.0.2",
55
"type": "module",
66
"scripts": {
77
"build": "bun run build.mjs",

src/index.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ interface OAuth2TokenSetter {
272272
): void
273273
}
274274

275-
export class ApiV5Client {
275+
class ApiV5Client {
276276
private apiBase: string
277277
private clientId: string
278278
private clientSecret: string
@@ -473,3 +473,5 @@ export class ApiV5Client {
473473
}
474474
}
475475
}
476+
477+
export { ApiV5Client, OAuth2Api }

0 commit comments

Comments
 (0)