locutus
Version:
Locutus other languages' standard libraries to JavaScript for fun and educational purposes
3 lines (2 loc) • 315 B
TypeScript
import { type PhpArrayLike, type PhpAssoc } from '../_helpers/_phpTypes.ts';
export declare function array_replace<TValue>(arr: PhpArrayLike<TValue>, firstReplacement: PhpArrayLike<TValue> | null | undefined, ...additionalReplacements: Array<PhpArrayLike<TValue> | null | undefined>): PhpAssoc<TValue | undefined>;