Files
starface-outlook-sync-addin/node_modules/@fluentui/utilities/lib-commonjs/renderFunction/composeRenderFunction.d.ts
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

9 lines
449 B
TypeScript

import type { IRenderFunction } from '../IRenderFunction';
/**
* Composes two 'render functions' to produce a final render function that renders
* the outer function, passing the inner function as 'default render'. The inner function
* is then passed the original 'default render' prop.
* @public
*/
export declare function composeRenderFunction<TProps>(outer: IRenderFunction<TProps>, inner: IRenderFunction<TProps>): IRenderFunction<TProps>;