-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert Scene.BOAT to 'boat' etc., see #123
- Loading branch information
Showing
3 changed files
with
31 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Copyright 2024, University of Colorado Boulder | ||
|
||
/** | ||
* BottleOrBoat is a string literal union enumeration that describes whether the sim is showing the bottle or boat scene | ||
* in the Buoyancy - Applications screen. | ||
* | ||
* @author Sam Reid (PhET Interactive Simulations) | ||
*/ | ||
export const BottleOrBoatValues = [ 'bottle', 'boat' ] as const; | ||
|
||
export type BottleOrBoat = typeof BottleOrBoatValues[number]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters