@types/hoist-non-react-statics

  • Version 3.3.5
  • Published
  • 6.45 kB
  • 2 dependencies
  • MIT license

Install

npm i @types/hoist-non-react-statics
yarn add @types/hoist-non-react-statics
pnpm add @types/hoist-non-react-statics

Overview

TypeScript definitions for hoist-non-react-statics

Index

Functions

function hoistNonReactStatics

hoistNonReactStatics: <
T extends React.ComponentType<any>,
S extends React.ComponentType<any>,
C extends { [key: string]: true } = {}
>(
TargetComponent: T,
SourceComponent: S,
customStatic?: C
) => T & hoistNonReactStatics.NonReactStatics<S, C>;

    Type Aliases

    type NonReactStatics

    type NonReactStatics<
    S extends React.ComponentType<any>,
    C extends {
    [key: string]: true;
    } = {}
    > = {
    [key in Exclude<
    keyof S,
    S extends React.MemoExoticComponent<any>
    ? keyof MEMO_STATICS | keyof C
    : S extends React.ForwardRefExoticComponent<any>
    ? keyof FORWARD_REF_STATICS | keyof C
    : keyof REACT_STATICS | keyof KNOWN_STATICS | keyof C
    >]: S[key];
    };

      Package Files (1)

      Dependencies (2)

      Dev Dependencies (0)

      No dev dependencies.

      Peer Dependencies (0)

      No peer dependencies.

      Badge

      To add a badge like this onejsDocs.io badgeto your package's README, use the codes available below.

      You may also use Shields.io to create a custom badge linking to https://www.jsdocs.io/package/@types/hoist-non-react-statics.

      • Markdown
        [![jsDocs.io](https://img.shields.io/badge/jsDocs.io-reference-blue)](https://www.jsdocs.io/package/@types/hoist-non-react-statics)
      • HTML
        <a href="https://www.jsdocs.io/package/@types/hoist-non-react-statics"><img src="https://img.shields.io/badge/jsDocs.io-reference-blue" alt="jsDocs.io"></a>