Gazebo_simulation-Frontend/node_modules/hoist-non-react-statics/index.d.ts
2020-12-21 10:29:31 -05:00

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