locutus
Version:
Locutus other languages' standard libraries to JavaScript for fun and educational purposes
5 lines (4 loc) • 360 B
TypeScript
import { type PhpCallableArgs, type PhpCallableDescriptor, type PhpRuntimeValue } from '../_helpers/_phpTypes.ts';
type FunctionValue = PhpRuntimeValue;
export declare function call_user_func_array<TResult = FunctionValue, TArgs extends PhpCallableArgs = PhpCallableArgs>(cb: PhpCallableDescriptor<TArgs, TResult>, parameters: [...TArgs]): TResult;
export {};