fuc-new/doc/node_modules/sitemap/dist/lib/xmllint.d.ts
hellcat 6adbc04d4b 1
2025-10-03 17:17:08 +08:00

9 lines
319 B
TypeScript

/// <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>;