export = arrayMerge; /** * Merge Arrays * * @param target Target Array * @param source Source Array * @param options options.strategy: Action to include generated code on target: * - combine: The array will be combine item per item (Default) * - concat: The arrays will be concatenated * - replace: The source array will replace the target array * - ignore: If the destination exists and is not empty, will ignore the source array. * - key: will use keyName as item key to merge arrays. The object of source will replace the object with the same key value on target. * @returns {object[]} */ declare function arrayMerge(target: any, source: any, options: any): object[];