UNPKG

@uifabric/utilities

Version:

Fluent UI React utilities for building components.

12 lines (11 loc) 451 B
/** * 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;