diff --git a/types/sanitize-html/index.d.ts b/types/sanitize-html/index.d.ts
index bdd70f956a..2e7527e3fc 100644
--- a/types/sanitize-html/index.d.ts
+++ b/types/sanitize-html/index.d.ts
@@ -1,8 +1,9 @@
-// Type definitions for sanitize-html 1.14.1
+// Type definitions for sanitize-html 1.18.2
// Project: https://github.com/punkave/sanitize-html
// Definitions by: Rogier Schouten
// Afshin Darian
// BehindTheMath
+// Rinze de Laat
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export = sanitize;
@@ -38,9 +39,12 @@ declare namespace sanitize {
interface IOptions {
allowedAttributes?: { [index: string]: string[] } | boolean;
+ allowedStyles?: { [index: string]: { [index: string]: RegExp[] } };
allowedClasses?: { [index: string]: string[] } | boolean;
+ allowedIframeHostnames?: string[];
allowedSchemes?: string[] | boolean;
allowedSchemesByTag?: { [index: string]: string[] } | boolean;
+ allowedSchemesAppliedToAttributes?: string[];
allowProtocolRelative?: boolean;
allowedTags?: string[] | boolean;
exclusiveFilter?: (frame: IFrame) => boolean;
diff --git a/types/sanitize-html/sanitize-html-tests.ts b/types/sanitize-html/sanitize-html-tests.ts
index cc43d64fcb..b02a5a6653 100644
--- a/types/sanitize-html/sanitize-html-tests.ts
+++ b/types/sanitize-html/sanitize-html-tests.ts
@@ -4,8 +4,17 @@ let options: sanitize.IOptions = {
allowedTags: sanitize.defaults.allowedTags.concat('h1', 'h2', 'img'),
allowedAttributes: {
'a': sanitize.defaults.allowedAttributes['a'].concat('rel'),
- 'img': ['src', 'height', 'width', 'alt']
+ 'img': ['src', 'height', 'width', 'alt', 'style']
},
+ allowedStyles: {
+ '*': {
+ color: [/^red$/],
+ background: [/^green$/],
+ 'background-color': [/^#0000FF$/]
+ }
+ },
+ allowedIframeHostnames: ['www.youtube.com'],
+ allowedSchemesAppliedToAttributes: [ 'href', 'src', 'cite' ],
transformTags: {
'a': sanitize.simpleTransform('a', { 'rel': 'nofollow' }),
'img': (tagName: string, attribs: sanitize.Attributes) => {