Files
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

10 lines
272 B
TypeScript

export = gooberShouldForwardProp;
export as namespace shouldForwardProp;
declare namespace gooberShouldForwardProp {
type ForwardPropFunction = (prop: string) => boolean;
function shouldForwardProp(fwdProp: ForwardPropFunction): (props: object) => undefined;
}