projecte_ionic/node_modules/webpack-merge/dist/join-arrays.d.ts

7 lines
240 B
TypeScript
Raw Normal View History

2022-02-09 18:30:03 +01:00
import { Customize, Key } from "./types";
export default function joinArrays({ customizeArray, customizeObject, key, }?: {
customizeArray?: Customize;
customizeObject?: Customize;
key?: Key;
}): (a: any, b: any, k: Key) => any;