diff --git a/js/util/IColor.ts b/js/util/IColor.ts index b3804f241..75c673efa 100644 --- a/js/util/IColor.ts +++ b/js/util/IColor.ts @@ -1,6 +1,6 @@ // Copyright 2021, University of Colorado Boulder -import IProperty from '../../../axon/js/IProperty.js'; +import IReadOnlyProperty from '../../../axon/js/IReadOnlyProperty.js'; import { Color } from '../imports.js'; /** @@ -9,6 +9,6 @@ import { Color } from '../imports.js'; * @author Jonathan Olson */ -type IColor = IProperty | IProperty | IProperty | Color | string | null; +type IColor = IReadOnlyProperty | IReadOnlyProperty | IReadOnlyProperty | Color | string | null; export default IColor; \ No newline at end of file diff --git a/js/util/IPaint.ts b/js/util/IPaint.ts index f40ed7cca..3d75c3e6a 100644 --- a/js/util/IPaint.ts +++ b/js/util/IPaint.ts @@ -1,7 +1,7 @@ // Copyright 2021, University of Colorado Boulder -import IProperty from '../../../axon/js/IProperty.js'; -import { Paint, Color } from '../imports.js'; +import IReadOnlyProperty from '../../../axon/js/IReadOnlyProperty.js'; +import { Color, Paint } from '../imports.js'; /** * Type representing a PaintDef @@ -9,6 +9,6 @@ import { Paint, Color } from '../imports.js'; * @author Jonathan Olson */ -type IPaint = Paint | IProperty | IProperty | IProperty | Color | string | null; +type IPaint = Paint | IReadOnlyProperty | IReadOnlyProperty | IReadOnlyProperty | Color | string | null; export default IPaint; \ No newline at end of file