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

8 lines
254 B
TypeScript

import type { JSXElement } from './jsx';
/**
* Render function interface for providing overrideable render callbacks.
*
* @public
*/
export type IRenderFunction<P> = (props?: P, defaultRender?: (props?: P) => JSXElement | null) => JSXElement | null;