CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
index.d.ts25 linesDownload Raw Back to lib
1/**2 * Encode special characters in `value`.3 *4 * @param {string} value5 *   Value to encode.6 * @param {Options} [options]7 *   Configuration.8 * @returns {string}9 *   Encoded value.10 */11export function stringifyEntities(value: string, options?: Options | undefined): string;12/**13 * Encode special characters in `value` as hexadecimals.14 *15 * @param {string} value16 *   Value to encode.17 * @param {LightOptions} [options]18 *   Configuration.19 * @returns {string}20 *   Encoded value.21 */22export function stringifyEntitiesLight(value: string, options?: import("./core.js").CoreOptions | undefined): string;23export type Options = import('./core.js').CoreOptions & import('./util/format-smart.js').FormatSmartOptions;24export type LightOptions = import('./core.js').CoreOptions;25