@v4fire/core
Version:
V4Fire core library
16 lines (15 loc) • 391 B
TypeScript
/*!
* V4Fire Core
* https://github.com/V4Fire/Core
*
* Released under the MIT license
* https://github.com/V4Fire/Core/blob/master/LICENSE
*/
/**
* Extends an object or function by the specified method
*
* @param obj
* @param name - method name
* @param method
*/
export default function extend(obj: Function | object, name: string, method: Function | PropertyDescriptor): void;