amis-rpc-design/node_modules/webpack-merge/dist/join-arrays.d.ts

7 lines
240 B
TypeScript
Raw Normal View History

2023-10-07 19:42:30 +08: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;