data-provider-temporary
Version:
Library that helps with server-to-client synchronization of data
10 lines (8 loc) • 316 B
TypeScript
declare module 'hoist-non-react-statics' {
import * as React from 'react';
function hoistNonReactStatics<Own, Custom>(
TargetComponent: React.ComponentType<Own>,
SourceComponent: React.ComponentType<Own & Custom>,
customStatic?: any): React.ComponentType<Own>;
export = hoistNonReactStatics
}