mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-16 20:44:56 +02:00
9 lines
319 B
TypeScript
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>;
|