UNPKG

contentful-management

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