locutus
Version:
Locutus other languages' standard libraries to JavaScript for fun and educational purposes
8 lines (7 loc) • 359 B
TypeScript
import type { PhpAssoc, PhpRuntimeValue } from '../_helpers/_phpTypes.ts';
type ExplodeValue = PhpRuntimeValue;
type KeyedValues = PhpAssoc<ExplodeValue>;
export declare function explode(...args: [string | boolean | null | undefined, string | KeyedValues | (() => ExplodeValue) | undefined, number?]): string[] | false | {
0: string;
} | null;
export {};