html-content-processor
Version:
A professional library for processing, cleaning, filtering, and converting HTML content to Markdown. Features advanced customization options, presets, plugin support, fluent API, and TypeScript integration for reliable content extraction.
29 lines (28 loc) • 664 B
TypeScript
/**
* Version management module
*
* This module exports the current version from package.json
* to ensure version consistency across the codebase.
*/
/**
* Current library version from package.json
*/
export declare const VERSION: string;
/**
* API version for compatibility tracking
*/
export declare const API_VERSION = "v1";
/**
* Get version information
*/
export declare function getVersionInfo(): {
version: string;
apiVersion: string;
name: any;
description: any;
};
/**
* Legacy version constant for backward compatibility
* @deprecated Use VERSION instead
*/
export declare const version: string;