From 662f212621bf5403b8b9cecba32b6d1100c62741 Mon Sep 17 00:00:00 2001 From: Jeroen Claassens Date: Wed, 10 Jan 2024 19:38:44 +0100 Subject: [PATCH] fix: re-export more types from @sapphire/pieces (#715) Signed-off-by: Jeroen Claassens --- src/index.ts | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/index.ts b/src/index.ts index c2597fc2f..295c2c031 100644 --- a/src/index.ts +++ b/src/index.ts @@ -43,13 +43,22 @@ export { Store, StoreRegistry, container, + type AliasPieceJSON, type AliasPieceOptions, - // eslint-disable-next-line deprecation/deprecation - type PieceContext, + type Container, type LoaderPieceContext, + type PieceContext, // eslint-disable-line deprecation/deprecation + type PieceJSON, + type PieceLocationJSON, + type PieceOf, type PieceOptions, + type StoreManagerManuallyRegisteredPiece, + type StoreManuallyRegisteredPiece, + type StoreOf, type StoreOptions, - type StoreRegistryEntries + type StoreRegistryEntries, + type StoreRegistryKey, + type StoreRegistryValue } from '@sapphire/pieces'; export * from '@sapphire/result'; export type { Awaitable } from '@sapphire/utilities';