From 0a6ec183b8982d1436c9ae35072e29e264b45875 Mon Sep 17 00:00:00 2001 From: Michael Kauzmann Date: Tue, 20 Jun 2023 12:16:50 -0600 Subject: [PATCH] remove as many LinkableElement usages as possible, using PhetioProperty where we have to, https://github.com/phetsims/tandem/issues/299 Signed-off-by: Michael Kauzmann --- js/SimulaRasaStrings.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/SimulaRasaStrings.ts b/js/SimulaRasaStrings.ts index 9c3df87..74a9f10 100644 --- a/js/SimulaRasaStrings.ts +++ b/js/SimulaRasaStrings.ts @@ -5,15 +5,15 @@ */ /* eslint-disable */ import getStringModule from '../../chipper/js/getStringModule.js'; -import LinkableProperty from '../../axon/js/LinkableProperty.js'; +import type LocalizedStringProperty from '../../chipper/js/LocalizedStringProperty.js'; import simulaRasa from './simulaRasa.js'; type StringsType = { 'simula-rasa': { - 'titleStringProperty': LinkableProperty; + 'titleStringProperty': LocalizedStringProperty; }; 'screen': { - 'nameStringProperty': LinkableProperty; + 'nameStringProperty': LocalizedStringProperty; } };