mirror of
https://github.com/ArthurDanjou/artdanj-shortener.git
synced 2026-01-14 18:59:56 +01:00
21 lines
389 B
TypeScript
21 lines
389 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' {
|
|
|
|
interface HashersList {
|
|
bcrypt: {
|
|
config: BcryptConfig,
|
|
implementation: BcryptContract,
|
|
},
|
|
argon: {
|
|
config: ArgonConfig,
|
|
implementation: ArgonContract,
|
|
},
|
|
}
|
|
}
|