Outlook_Addin_LLM/node_modules/@fluentui/utilities/lib-amd/IRenderFunction.d.ts

9 lines
224 B
TypeScript
Raw Normal View History

/**
* Render function interface for providing overrideable render callbacks.
*
* @public
*/
export interface IRenderFunction<P> {
(props?: P, defaultRender?: (props?: P) => JSX.Element | null): JSX.Element | null;
}