html-dom-parser
Version:
HTML to DOM parser.
12 lines • 992 B
TypeScript
/**
* SVG elements are case-sensitive.
*
* @see https://developer.mozilla.org/docs/Web/SVG/Element#svg_elements_a_to_z
*/
export declare const CASE_SENSITIVE_TAG_NAMES: readonly ["animateMotion", "animateTransform", "clipPath", "feBlend", "feColorMatrix", "feComponentTransfer", "feComposite", "feConvolveMatrix", "feDiffuseLighting", "feDisplacementMap", "feDropShadow", "feFlood", "feFuncA", "feFuncB", "feFuncG", "feFuncR", "feGaussianBlur", "feImage", "feMerge", "feMergeNode", "feMorphology", "feOffset", "fePointLight", "feSpecularLighting", "feSpotLight", "feTile", "feTurbulence", "foreignObject", "linearGradient", "radialGradient", "textPath"];
export declare const CASE_SENSITIVE_TAG_NAMES_MAP: Record<string, string>;
export declare const CARRIAGE_RETURN = "\r";
export declare const CARRIAGE_RETURN_REGEX: RegExp;
export declare const CARRIAGE_RETURN_PLACEHOLDER: string;
export declare const CARRIAGE_RETURN_PLACEHOLDER_REGEX: RegExp;
//# sourceMappingURL=constants.d.ts.map