/**
 * @adonisjs/hash
 *
 * (c) Harminder Virk <virk@adonisjs.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
declare module '@ioc:Adonis/Core/Application' {
    import { HashContract } from '@ioc:Adonis/Core/Hash';
    interface ContainerBindings {
        'Adonis/Core/Hash': HashContract;
    }
}
