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

11 lines
559 B
TypeScript

import type { ICustomizerProps } from './Customizer.types';
import type { ICustomizerContext } from './CustomizerContext';
/**
* Merge props and customizations giving priority to props over context.
* NOTE: This function will always perform multiple merge operations. Use with caution.
* @param props - New settings to merge in.
* @param parentContext - Context containing current settings.
* @returns Merged customizations.
*/
export declare function mergeCustomizations(props: ICustomizerProps, parentContext: ICustomizerContext): ICustomizerContext;