Skip to content

Commit

Permalink
docs update
Browse files Browse the repository at this point in the history
  • Loading branch information
karnthis committed Jan 18, 2024
1 parent 9f8fbaf commit df4c682
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 11 deletions.
4 changes: 2 additions & 2 deletions docs/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/interfaces/IBech32Handler.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/interfaces/IDecoded.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/variables/bech32.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/variables/bech32m.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docsreadme.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Sample Docs
# @jackallabs/bech32 Docs

These docs are generated and may not contain the most current version of the JSDocs.
6 changes: 4 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import { Bech32Handler } from '@/classes'
import { IBech32Handler } from '@/interfaces'

export * from '@/interfaces'

export const bech32 = new Bech32Handler('bech32')
export const bech32m = new Bech32Handler('bech32m')
export const bech32: IBech32Handler = new Bech32Handler('bech32')
export const bech32m: IBech32Handler = new Bech32Handler('bech32m')

0 comments on commit df4c682

Please sign in to comment.