bpms_site/.svn/pristine/a3/a31fac4a325bc1e60a0c6ad4633ee2603a81d0e6.svn-base
2025-11-02 16:38:49 +03:30

9 lines
266 B
Plaintext

/**
* Hoists a name from a module or promised module.
*
* @param module the module to hoist the name from
* @param name the name to hoist
* @returns the value on the module (or promised module)
*/
export declare function hoist(module: any, name: string): any;