From 1242a29618af548c4d50bf9aa77dda4047362c24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Mon, 20 Apr 2020 10:39:44 +0200 Subject: [PATCH] fix(types): correct type of Model.createMany values parameter --- adonis-typings/model.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adonis-typings/model.ts b/adonis-typings/model.ts index 926887db..7f8f3cd7 100644 --- a/adonis-typings/model.ts +++ b/adonis-typings/model.ts @@ -703,7 +703,7 @@ declare module '@ioc:Adonis/Lucid/Model' { */ createMany ( this: T, - values: Partial>>, + values: Partial>>[], options?: ModelAdapterOptions, ): Promise[]>