From 3a7ae8d9a16234ae84809d7d430d8259f75e8367 Mon Sep 17 00:00:00 2001 From: Sergio Garcia Date: Wed, 30 Apr 2025 17:34:01 +0200 Subject: [PATCH] Fix exports --- img/src/index.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/img/src/index.ts b/img/src/index.ts index aaca1904..8958b29c 100644 --- a/img/src/index.ts +++ b/img/src/index.ts @@ -4,4 +4,9 @@ import {Data} from './data'; export const Sprites = new A.Sprites(Data); export const Icons = new A.Icons(Data); -export {GraphicsGen, AnimatedGraphicsGen, SecondFrameGraphicsGen, PokemonSprite} from './adaptable'; +export { + type GraphicsGen, + type AnimatedGraphicsGen, + type SecondFrameGraphicsGen, + type PokemonSprite, +} from './adaptable';