locutus
Version:
Locutus other languages' standard libraries to JavaScript for fun and educational purposes
7 lines (6 loc) • 380 B
TypeScript
import type { PhpAssoc, PhpRuntimeValue } from '../_helpers/_phpTypes.ts';
type ImplodeValue = PhpRuntimeValue;
type KeyedValues = PhpAssoc<ImplodeValue>;
export declare function implode(pieces: ImplodeValue[] | KeyedValues | string | undefined): string;
export declare function implode(glue: string, pieces: ImplodeValue[] | KeyedValues | string | undefined): string;
export {};