Skip to content

Commit

Permalink
Use SimOptions, see phetsims/joist#795
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Apr 16, 2022
1 parent fecdcd8 commit dee7650
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions js/GOSim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,14 @@
* @author Chris Malley (PixelZoom, Inc.)
*/

import Sim from '../../joist/js/Sim.js';
import Sim, { SimOptions } from '../../joist/js/Sim.js';
import Tandem from '../../tandem/js/Tandem.js';
import geometricOptics from './geometricOptics.js';
import LensScreen from './lens/LensScreen.js';
import MirrorScreen from './mirror/MirrorScreen.js';
import GOConstants from './common/GOConstants.js';
import optionize from '../../phet-core/js/optionize.js';
import GOOptionsNode from './common/view/GOOptionsNode.js';
import { Node } from '../../scenery/js/imports.js';

//TODO https://github.com/phetsims/joist/issues/795 import SimOptions from Sim.js
type SimOptions = {
credits?: object;
hasKeyboardHelpContent?: boolean;
createOptionsDialogContent?: ( tandem: Tandem ) => Node;
};

type SelfOptions = {

Expand Down

0 comments on commit dee7650

Please sign in to comment.