locutus
Version:
Locutus other languages' standard libraries to JavaScript for fun and educational purposes
7 lines (6 loc) • 355 B
TypeScript
import type { NumericLike, PhpList, PhpNullish, PhpRuntimeValue } from '../_helpers/_phpTypes.ts';
type ProductValue = NumericLike | boolean | PhpNullish;
type ProductInput = PhpRuntimeValue;
export declare function array_product(input: PhpList<ProductValue>): number;
export declare function array_product(input: ProductInput): number | null;
export {};