dompurify 3.4.9 → 3.4.10

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.
@@ -1,4 +1,4 @@
1
- /*! @license DOMPurify 3.4.9 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.4.9/LICENSE */
1
+ /*! @license DOMPurify 3.4.10 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.4.10/LICENSE */
2
2
 
3
3
  import { TrustedTypePolicy, TrustedTypesWindow, TrustedHTML } from 'trusted-types/lib/index.js';
4
4
 
@@ -212,8 +212,6 @@ interface UseProfilesConfig {
212
212
  html?: boolean | undefined;
213
213
  }
214
214
 
215
- declare const _default: DOMPurify;
216
-
217
215
  interface DOMPurify {
218
216
  /**
219
217
  * Creates a DOMPurify instance using the given window-like object. Defaults to `window`.
@@ -444,5 +442,7 @@ type WindowLike = Pick<typeof globalThis, 'DocumentFragment' | 'HTMLTemplateElem
444
442
  MozNamedAttrMap?: typeof window.NamedNodeMap;
445
443
  } & Pick<TrustedTypesWindow, 'trustedTypes'>;
446
444
 
445
+ declare const _default: DOMPurify;
446
+
447
447
  export { _default as default };
448
448
  export type { Config, DOMPurify, DocumentFragmentHook, ElementHook, HookName, NodeHook, RemovedAttribute, RemovedElement, UponSanitizeAttributeHook, UponSanitizeAttributeHookEvent, UponSanitizeElementHook, UponSanitizeElementHookEvent, WindowLike };