Skip to content

Commit

Permalink
fix: use readonly ref objects
Browse files Browse the repository at this point in the history
  • Loading branch information
trezy committed Jun 15, 2024
1 parent 324e90e commit fa3ceb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/typedefs/PixiElementsImpl.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { NameOverrides } from '../constants/NameOverrides.js';
* import('react').PropsWithChildren<
* Omit<PixiOptionsType<import('./ConstructorParams.js').ConstructorParams<PixiType[K]>>, 'children'>
* & { init?: import('./ConstructorParams.js').ConstructorParams<PixiType[K]> }
* > & import('react').PropsWithRef<{ ref?: import('react').MutableRefObject<InstanceType<PixiType[K]>> }>
* > & import('react').PropsWithRef<{ ref?: import('react').RefObject<InstanceType<PixiType[K]>> }>
* }} PixiElementsImpl
*/
export const PixiElementsImpl = {};

0 comments on commit fa3ceb9

Please sign in to comment.