UNPKG

@adonisjs/view

Version:

View/template engine for AdonisJs

15 lines (14 loc) 391 B
/** * @adonisjs/view * * (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 { ViewContract } from '@ioc:Adonis/Core/View'; interface ContainerBindings { 'Adonis/Core/View': ViewContract; } }