UNPKG

sitemap

Version:
9 lines (8 loc) 319 B
/// <reference types="node" /> import { Readable } from 'stream'; /** * Verify the passed in xml is valid. Requires xmllib be installed * @param xml what you want validated * @return {Promise<void>} resolves on valid rejects [error stderr] */ export declare function xmlLint(xml: string | Readable): Promise<void>;