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

10 lines
351 B
TypeScript

/**
* Renders a given string and returns both html and css needed for the html.
* @param onRender - Function that returns a string.
* @param namespace - Optional namespace to prepend to css classnames to avoid collisions.
*/
export declare function renderStatic(onRender: () => string, namespace?: string): {
html: string;
css: string;
};