Files
est-frame/node_modules/webpack-merge/dist/join-arrays.d.ts
2025-10-22 05:38:27 +00:00

7 lines
240 B
TypeScript
Executable File

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;