Skip to content

Commit

Permalink
refactor(harmonizer): use import map instead of versioned imports
Browse files Browse the repository at this point in the history
  • Loading branch information
phw committed Jul 2, 2024
1 parent c1f969e commit d91fbe4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions harmonizer/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { immutableReleaseProperties, immutableTrackProperties } from './properti

import type { EntityType } from '@kellnerd/musicbrainz';
import type { ReleasePackaging, ReleaseStatus } from '@kellnerd/musicbrainz/data/release';
import type { ReleaseGroupType } from '@kellnerd/musicbrainz/data/release-group';
export type { ReleaseGroupType } from '@kellnerd/musicbrainz/data/release-group';
import type { PartialDate } from '../utils/date.ts';
import type { ScriptFrequency } from '../utils/script.ts';
import type { ReleaseGroupType } from 'jsr:@kellnerd/musicbrainz@^0.3.0/data/release-group';
export type { ReleaseGroupType } from 'jsr:@kellnerd/musicbrainz@^0.3.0/data/release-group';

/** MusicBrainz entity types which Harmony supports. */
export type HarmonyEntityType = Extract<EntityType, 'release' | 'artist'>;
Expand Down

0 comments on commit d91fbe4

Please sign in to comment.