Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #527 from EOSIO/remove-const-enum
Browse files Browse the repository at this point in the history
removing const to prevent compilation error in certain TS projects
  • Loading branch information
c0d3ster authored Apr 1, 2019
2 parents 53d8efc + 1220e01 commit 08d7252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/eosjs-numeric.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export function base64ToBinary(s: string) {
}

/** Key types this library supports */
export const enum KeyType {
export enum KeyType {
k1 = 0,
r1 = 1,
}
Expand Down

0 comments on commit 08d7252

Please sign in to comment.