Gitako/src/react-override.d.ts
2022-05-29 17:05:03 +08:00

10 lines
372 B
TypeScript

// Patch the removed `children` prop
declare namespace React {
interface FunctionComponent<P = {}> {
(props: PropsWithChildren<P>, context?: any): ReactElement<any, any> | null;
propTypes?: WeakValidationMap<P> | undefined;
contextTypes?: ValidationMap<any> | undefined;
defaultProps?: Partial<P> | undefined;
displayName?: string | undefined;
}
}