UNPKG

json2php

Version:
12 lines (11 loc) 321 B
type MakeProps = { linebreak?: string; indent?: string; shortArraySyntax?: boolean; stripSpaces?: boolean; }; declare const make: (props?: MakeProps) => (obj: unknown, parentIndent?: string) => string; declare const json2php: ReturnType<typeof make> & { make: typeof make; }; export default json2php;