UNPKG

locutus

Version:

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

5 lines (4 loc) 246 B
import { type PhpArrayLike, type PhpNullish, type StringLike } from '../_helpers/_phpTypes.ts'; type SummableValue = StringLike | PhpNullish; export declare function array_sum(array: PhpArrayLike<SummableValue> | null): number | null; export {};