Skip to content

Commit

Permalink
Change TReadOnlyProperty => LinkableProperty, see phetsims/axon#414
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Sep 26, 2022
1 parent 9a7f34d commit 51fb2c2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions js/DensityStrings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@
*/
/* eslint-disable */
import getStringModule from '../../chipper/js/getStringModule.js';
import TReadOnlyProperty from '../../axon/js/TReadOnlyProperty.js';
import LinkableProperty from '../../axon/js/LinkableProperty.js';
import density from './density.js';

type StringsType = {
'density': {
'title': string;
'titleStringProperty': TReadOnlyProperty<string>;
'titleStringProperty': LinkableProperty<string>;
};
'screen': {
'intro': string;
'introStringProperty': TReadOnlyProperty<string>;
'introStringProperty': LinkableProperty<string>;
'compare': string;
'compareStringProperty': TReadOnlyProperty<string>;
'compareStringProperty': LinkableProperty<string>;
'mystery': string;
'mysteryStringProperty': TReadOnlyProperty<string>;
'mysteryStringProperty': LinkableProperty<string>;
}
};

Expand Down

0 comments on commit 51fb2c2

Please sign in to comment.