UNPKG

bungie-net-core

Version:

An easy way to interact with the Bungie.net API

6 lines (5 loc) 484 B
import type { AllManifestComponents as AllDestinyManifestComponents, ManifestLanguage as DestinyManifestLanguage } from './types'; export { getManifestComponentJSON as getDestinyManifestComponent } from './getManifestComponent'; export type { AllDestinyManifestComponents, DestinyManifestLanguage }; export type DestinyManifestComponent = keyof AllDestinyManifestComponents; export type DestinyManifestDefinition<T extends DestinyManifestComponent> = AllDestinyManifestComponents[T];