UNPKG

@types/json_ml

Version:
10 lines (8 loc) 278 B
/// <reference types="cheerio" /> export type Node = string | [string, ...any[]]; export function parse(xml: string, trim?: boolean): Node[]; export function stringify( object: Node[], replacer?: ((node: cheerio.Cheerio) => any) | null, indent?: number, ): string;