7 lines
169 B
TypeScript
7 lines
169 B
TypeScript
|
import * as React from 'react';
|
||
|
|
||
|
export default function requirePropFactory(
|
||
|
componentNameInError: string,
|
||
|
Component?: React.JSXElementConstructor<unknown>,
|
||
|
): any;
|