From 0bde2d96c67640f0c2ffd985cae48f91768b17fb Mon Sep 17 00:00:00 2001 From: nandi95 <41805560+nandi95@users.noreply.github.com> Date: Wed, 25 Aug 2021 15:15:48 +0100 Subject: [PATCH] fix(services): added missing response type export (#104) --- src/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 1c1b369e..83f3669f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -27,6 +27,7 @@ import type FactoryHooks from './Contracts/FactoryHooks'; import type { CastType } from './Calliope/Concerns/CastsAttributes'; import type { QueryParams } from './Calliope/Concerns/BuildsQuery'; import type FormatsQueryParameters from './Contracts/FormatsQueryParameters'; +import type { ApiResponse } from './Contracts/HandlesApiResponse'; export type { AttributeCaster, @@ -37,7 +38,8 @@ export type { FactoryHooks, CastType, QueryParams, - FormatsQueryParameters + FormatsQueryParameters, + ApiResponse }; export * from './Support/array';