feat(intellisense): add type comments

This commit is contained in:
Romain Lanz
2018-09-15 09:37:07 +02:00
parent 489897c488
commit b38ea8d773
7 changed files with 14 additions and 7 deletions

View File

@@ -1,5 +1,6 @@
'use strict'
/** @type {typeof import('@adonisjs/lucid/src/Lucid/Model')} */
const Model = use('Model')
class Token extends Model {

View File

@@ -1,6 +1,9 @@
'use strict'
/** @type {import('@adonisjs/framework/src/Hash')} */
const Hash = use('Hash')
/** @type {typeof import('@adonisjs/lucid/src/Lucid/Model')} */
const Model = use('Model')
class User extends Model {