From bc557a011e3c37c3fef6d3298d6190a0e12f0ae3 Mon Sep 17 00:00:00 2001 From: Marco Franceschi Date: Wed, 20 Apr 2022 11:48:58 -0400 Subject: [PATCH] fix: Included params to Service interface --- src/types/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types/index.ts b/src/types/index.ts index fd09e1e..9c76d1d 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -41,12 +41,14 @@ export interface Service { opts, account, rawData, + params, }: { regions?: string config: any opts: Opts account?: string rawData: any + params?: { [field: string]: any } }) => any } export interface Entity {