From 89914261e9ac6e7b2ee17a2aec513ffe549ea820 Mon Sep 17 00:00:00 2001 From: Nandor Kraszlan Date: Fri, 28 Jul 2023 23:26:17 +0100 Subject: [PATCH] fix: add missing getter type export --- src/index.ts | 6 ++++-- typedoc.json | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index cbb0278f..b669b9ce 100644 --- a/src/index.ts +++ b/src/index.ts @@ -31,7 +31,8 @@ import type { AttributeKeys, SimpleAttributes, SimpleAttributeKeys, - RawAttributes + RawAttributes, + Getters } from './Calliope/Concerns/HasAttributes'; import type FactoryHooks from './Contracts/FactoryHooks'; import type { CastType } from './Calliope/Concerns/CastsAttributes'; @@ -65,7 +66,8 @@ export type { RawAttributes, ResolvableAttributes, Order, - RequestMiddleware + RequestMiddleware, + Getters }; export * from './Support/type'; diff --git a/typedoc.json b/typedoc.json index 79a426e4..e922ebed 100644 --- a/typedoc.json +++ b/typedoc.json @@ -1,4 +1,5 @@ { + "$schema": "https://typedoc.org/schema.json", "entryPoints": [ "src/index.ts" ],