| | |
| | | fallbackWarn?: boolean; |
| | | /** |
| | | * @remarks |
| | | * Whether to escape parameters for list or named interpolation values. |
| | | * When enabled, this option: |
| | | * - Escapes HTML special characters (`<`, `>`, `"`, `'`, `&`, `/`, `=`) in interpolation parameters |
| | | * - Sanitizes the final translated HTML to prevent XSS attacks by: |
| | | * - Escaping dangerous characters in HTML attribute values |
| | | * - Neutralizing event handler attributes (onclick, onerror, etc.) |
| | | * - Disabling javascript: URLs in href, src, action, formaction, and style attributes |
| | | * |
| | | * @defaultValue false |
| | | * @see [HTML Message - Using the escapeParameter option](https://vue-i18n.intlify.dev/guide/essentials/syntax.html#using-the-escapeparameter-option) |
| | | * Whether do escape parameter for list or named interpolation values |
| | | */ |
| | | escapeParameter?: boolean; |
| | | /** |