mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 00:28:15 +08:00
9 lines
312 B
TypeScript
9 lines
312 B
TypeScript
|
/**
|
||
|
* Parse HTML character references.
|
||
|
*
|
||
|
* @param {string} value
|
||
|
* @param {Readonly<Options> | null | undefined} [options]
|
||
|
*/
|
||
|
export function parseEntities(value: string, options?: Readonly<Options> | null | undefined): string;
|
||
|
import type { Options } from '../index.js';
|
||
|
//# sourceMappingURL=index.d.ts.map
|