From 33504ee46f0f89dd8861a7d8ec47fa7cdcf69eef Mon Sep 17 00:00:00 2001 From: David Luecke Date: Fri, 6 Dec 2019 12:33:04 -0600 Subject: [PATCH] Add any as default tpe parameter (#73) --- types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index 8c5fa0e..c139739 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -17,7 +17,7 @@ export interface ObjectionServiceOptions extends ServiceOptions { upsertGraphOptions: any; } -export class Service extends AdapterService implements InternalServiceMethods { +export class Service extends AdapterService implements InternalServiceMethods { Model: typeof Model; options: ObjectionServiceOptions;