getRenderPropValue.d.ts 197 B

123
  1. import type * as React from 'react';
  2. export type RenderFunction = () => React.ReactNode;
  3. export declare const getRenderPropValue: (propValue?: React.ReactNode | RenderFunction) => React.ReactNode;