mirror of
https://github.com/idrainformatica/PecFlow.git
synced 2026-06-16 20:55:41 +02:00
10 lines
272 B
TypeScript
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;
|
|
}
|