Skip to content

Commit

Permalink
convert to typescript (remove redundant ParticleType types), phetsims…
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Aug 2, 2023
1 parent adb2a12 commit 78df168
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/common/model/BANParticle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import Particle, { ParticleOptions } from '../../../../shred/js/model/Particle.js';
import BANConstants from '../BANConstants.js';
import buildANucleus from '../../buildANucleus.js';
import { ParticleTypeString } from '../../../../shred/js/model/ParticleAtom.js';
import { ParticleTypeString } from '../../../../shred/js/model/Particle.js';

export type BANParticleOptions = ParticleOptions;
export default class BANParticle extends Particle {
Expand Down
2 changes: 1 addition & 1 deletion js/common/model/ParticleType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import Enumeration from '../../../../phet-core/js/Enumeration.js';
import { ProfileColorProperty } from '../../../../scenery/js/imports.js';
import BuildANucleusStrings from '../../BuildANucleusStrings.js';
import BANColors from '../BANColors.js';
import { ParticleTypeString } from '../../../../shred/js/model/ParticleAtom.js';
import { ParticleTypeString } from '../../../../shred/js/model/Particle.js';
import TReadOnlyProperty from '../../../../axon/js/TReadOnlyProperty.js';

class ParticleType extends EnumerationValue {
Expand Down

0 comments on commit 78df168

Please sign in to comment.