UNPKG

locutus

Version:

Locutus other languages' standard libraries to JavaScript for fun and educational purposes

7 lines (6 loc) 296 B
import { type PhpAssoc, type PhpRuntimeValue } from '../_helpers/_phpTypes.ts'; interface MergeObject extends PhpAssoc<MergeValue> { } type MergeValue = PhpRuntimeValue | MergeValue[] | MergeObject; export declare function array_merge_recursive(...arrays: MergeObject[]): MergeObject; export {};