LeagueStats/server/contracts/hash.ts

20 lines
382 B
TypeScript
Raw Normal View History

2020-10-04 11:37:05 +00:00
/**
* 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' {
interface HashersList {
bcrypt: {
config: BcryptConfig
implementation: BcryptContract
}
2020-10-04 11:37:05 +00:00
argon: {
config: ArgonConfig
implementation: ArgonContract
}
2020-10-04 11:37:05 +00:00
}
}