mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-07 19:25:13 +02:00
7 lines
240 B
TypeScript
7 lines
240 B
TypeScript
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;
|