Gazebo_simulation-Frontend/node_modules/hoist-non-react-statics/index.d.ts

9 lines
270 B
TypeScript

import * as React from 'react';
declare function hoistNonReactStatics<Own, Custom>(
TargetComponent: React.ComponentType<Own>,
SourceComponent: React.ComponentType<Own & Custom>,
customStatic?: any): React.ComponentType<Own>;
export default hoistNonReactStatics