dompurify 3.4.13 → 3.4.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/types.ts CHANGED
@@ -254,13 +254,10 @@ export interface RemovedAttribute {
254
254
  }
255
255
 
256
256
  type BasicHookName =
257
- | 'beforeSanitizeElements'
258
- | 'afterSanitizeElements'
259
- | 'uponSanitizeShadowNode';
257
+ 'beforeSanitizeElements' | 'afterSanitizeElements' | 'uponSanitizeShadowNode';
260
258
  type ElementHookName = 'beforeSanitizeAttributes' | 'afterSanitizeAttributes';
261
259
  type DocumentFragmentHookName =
262
- | 'beforeSanitizeShadowDOM'
263
- | 'afterSanitizeShadowDOM';
260
+ 'beforeSanitizeShadowDOM' | 'afterSanitizeShadowDOM';
264
261
  type UponSanitizeElementHookName = 'uponSanitizeElement';
265
262
  type UponSanitizeAttributeHookName = 'uponSanitizeAttribute';
266
263