Files
duty-schedule-api/contracts/hash.ts
Sockenklaus 4acf451351 first commit
2021-10-16 21:31:35 +02:00

20 lines
382 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
}
}
}