From b19c484beed4e80ddf486d9a8cd423b055a583f4 Mon Sep 17 00:00:00 2001 From: Florian Date: Thu, 23 Oct 2025 10:48:35 +0200 Subject: [PATCH] Added more type imports for a better usability --- .gitignore | 1 + src/index.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e50702a..24ade05 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,7 @@ report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json .eslintcache .cache *.tsbuildinfo +package-lock.json # IntelliJ based IDEs .idea diff --git a/src/index.ts b/src/index.ts index 7222881..84d8e10 100644 --- a/src/index.ts +++ b/src/index.ts @@ -18,7 +18,7 @@ export { SuggestionsEndpoint, SuggestionsEndpointTypes, } from "./endpoints/Suggestions"; -export { Region } from "./types/SharedSearchParams"; +export { Region, ResourceType, Locale, View, EntityType, AllowedViews, Platform } from "./types/SharedSearchParams"; export { getAuthenticatedAxios } from "./utils/AxiosManager"; export type { AppleMusicConfigParams } from "./utils/Config"; export { AppleMusicConfig, AuthType } from "./utils/Config";