UNPKG

763 BTypeScriptView Raw
1/**
2 * This method enhances a base object which would normally contain data, with
3 * methods from another object that might work on manipulating that data.
4 * All the added methods are set as non enumerable, non configurable, and non
5 * writable properties. This ensures that if we try to clone or stringify the
6 * base object, we don't have to worry about these additional methods.
7 * @private
8 * @param {object} baseObject - Base object with data
9 * @param {object} methodsObject - Object with methods as properties. The key
10 * values used here will be the same that will be defined on the baseObject.
11 */
12export default function enhanceWithMethods<B extends Record<string, unknown>, M extends Record<string, Function>>(baseObject: B, methodsObject: M): M & B;