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

12 lines
451 B
TypeScript

/**
* Allows you to hoist static functions in components.
* Created for the purpose of fixing broken static functions in classes
* that utilize decorators.
*
* @public
* @param source - The object where the methods are hoisted from.
* @param dest - The object to hoist the methods onto.
* @returns The dest object with methods added
*/
export declare function hoistStatics<TSource extends Object, TDest>(source: TSource, dest: TDest): TDest;