locutus
Version:
Locutus other languages' standard libraries to JavaScript for fun and educational purposes
9 lines (8 loc) • 363 B
TypeScript
import { type PhpAssoc, type PhpKeyComparatorDescriptor } from '../_helpers/_phpTypes.ts';
type IntersectArray<T> = PhpAssoc<T> | T[];
export declare function array_intersect_ukey<T>(arr1: PhpAssoc<T>, ...arraysAndCallback: [
arr2: IntersectArray<T>,
...rest: Array<IntersectArray<T>>,
callback: PhpKeyComparatorDescriptor
]): PhpAssoc<T>;
export {};