mirror of
https://github.com/ArthurDanjou/artdanj-shortener.git
synced 2026-01-14 15:54:08 +01:00
17 lines
302 B
TypeScript
Executable File
17 lines
302 B
TypeScript
Executable File
/**
|
|
* 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 {
|
|
argon: {
|
|
config: ArgonConfig,
|
|
implementation: ArgonContract,
|
|
},
|
|
}
|
|
}
|