mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-25 21:07:27 +00:00
22 lines
443 B
TypeScript
22 lines
443 B
TypeScript
|
|
/**
|
||
|
|
* Contract source: https://git.io/Jfefs
|
||
|
|
*
|
||
|
|
* Feel free to let us know via PR, if you find something broken in this contract
|
||
|
|
* file.
|
||
|
|
*/
|
||
|
|
|
||
|
|
declare module '@ioc:Adonis/Core/Hash' {
|
||
|
|
import { HashDrivers } from '@ioc:Adonis/Core/Hash'
|
||
|
|
|
||
|
|
interface HashersList {
|
||
|
|
bcrypt: {
|
||
|
|
config: BcryptConfig,
|
||
|
|
implementation: BcryptContract,
|
||
|
|
},
|
||
|
|
argon: {
|
||
|
|
config: ArgonConfig,
|
||
|
|
implementation: ArgonContract,
|
||
|
|
},
|
||
|
|
}
|
||
|
|
}
|