Skip to content

Commit

Permalink
removed const enum (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
giorgosnty committed Feb 7, 2022
1 parent a294838 commit f02358c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bitloops",
"version": "0.0.21",
"version": "0.0.22",
"description": "NodeJS library for the Bitloops",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -46,4 +46,4 @@
"ts-node": "^10.3.0",
"typescript": "^4.5.5"
}
}
}
2 changes: 1 addition & 1 deletion src/definitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export type BitloopsUser = {
/** Removes subscribe listener */
export type Unsubscribe = () => void;

export const enum AuthTypes {
export enum AuthTypes {
Anonymous = 'Anonymous',
Basic = 'Basic',
X_API_KEY = 'X-API-Key',
Expand Down

0 comments on commit f02358c

Please sign in to comment.