Skip to content

Commit

Permalink
Create LinkableReadonlyProperty, see: #414
Browse files Browse the repository at this point in the history
  • Loading branch information
marlitas committed Feb 14, 2023
1 parent 60cb949 commit a3e06c7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions js/LinkableReadonlyProperty.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Copyright 2022, University of Colorado Boulder

import { LinkableElement } from '../../tandem/js/PhetioObject.js';
import TReadOnlyProperty from './TReadOnlyProperty.js';


type LinkableReadonlyProperty<T> = TReadOnlyProperty<T> & LinkableElement;
export default LinkableReadonlyProperty;

0 comments on commit a3e06c7

Please sign in to comment.