@dbx-tools/email 0.6.46 → 0.6.49

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/juice.d.ts DELETED
@@ -1,17 +0,0 @@
1
- // Minimal ambient types for `juice` (no `@types/juice` is published).
2
- // We only use the default export: inline a stylesheet found in the
3
- // document's <style> tags into element `style` attributes.
4
- declare module "juice" {
5
- interface JuiceOptions {
6
- applyStyleTags?: boolean;
7
- removeStyleTags?: boolean;
8
- preserveImportant?: boolean;
9
- preserveMediaQueries?: boolean;
10
- preserveFontFaces?: boolean;
11
- inlinePseudoElements?: boolean;
12
- xmlMode?: boolean;
13
- [option: string]: unknown;
14
- }
15
- function juice(html: string, options?: JuiceOptions): string;
16
- export = juice;
17
- }