From 50fca7bdf06794c12a70f4261437bba35e1af40f Mon Sep 17 00:00:00 2001 From: MARCROCK22 <57925328+MARCROCK22@users.noreply.github.com> Date: Fri, 15 Mar 2024 17:39:58 -0400 Subject: [PATCH] types --- src/client/base.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/base.ts b/src/client/base.ts index 6e61fea..5826966 100644 --- a/src/client/base.ts +++ b/src/client/base.ts @@ -287,7 +287,7 @@ export type RuntimeConfigHTTP = Omit, 'publicKey' | 'port'>; export type RuntimeConfig = OmitInsert; -export type ServicesOptions = { +export interface ServicesOptions { rest?: ApiHandler; cache?: { adapter?: Adapter; disabledCache?: Cache['disabledCache'] }; langs?: { @@ -295,4 +295,4 @@ export type ServicesOptions = { aliases?: Record; }; middlewares?: Record; -}; +}