hash.ts 380 B

12345678910111213
  1. /**
  2. * Contract source: https://git.io/Jfefs
  3. *
  4. * Feel free to let us know via PR, if you find something broken in this contract
  5. * file.
  6. */
  7. import type { InferListFromConfig } from '@adonisjs/core/build/config'
  8. import type hashConfig from '../config/hash'
  9. declare module '@ioc:Adonis/Core/Hash' {
  10. interface HashersList extends InferListFromConfig<typeof hashConfig> {}
  11. }