Skip to content

Commit

Permalink
🐛 Fixed types import
Browse files Browse the repository at this point in the history
  • Loading branch information
dethdkn committed Jan 25, 2024
1 parent f47159f commit d5fecce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ldap-passwords",
"type": "module",
"version": "2.1.2",
"version": "2.1.3",
"description": "ldap-passwords offers secure password hashing and verification using LDAP password algorithms.",
"author": {
"name": "Gabriel 'DethDKN' Rosa",
Expand Down
6 changes: 3 additions & 3 deletions types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { md5, verifyMD5 } from 'ldap-md5/types/index'
import type { ssha, verifySSHA } from 'ldap-sha/types/index'
import type { sha512Crypt, verifySha512 } from 'ldap-sha512/types/index'
import { md5, verifyMD5 } from 'ldap-md5/types/index'
import { ssha, verifySSHA } from 'ldap-sha/types/index'
import { sha512Crypt, verifySha512 } from 'ldap-sha512/types/index'

export { md5, verifyMD5, ssha, verifySSHA, sha512Crypt, verifySha512 }

Expand Down

0 comments on commit d5fecce

Please sign in to comment.