From f02a0551dff49026d83a5675e26c58b703dfbb94 Mon Sep 17 00:00:00 2001 From: David Dooling Date: Tue, 22 Oct 2019 15:46:20 -0500 Subject: [PATCH] Add missing headers option to HtmlValidator (#39313) `headers` is documented in the html-validator README, https://github.com/zrrrzzt/html-validator#readme . --- types/html-validator/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/html-validator/index.d.ts b/types/html-validator/index.d.ts index d180c4db52..c6961bdced 100644 --- a/types/html-validator/index.d.ts +++ b/types/html-validator/index.d.ts @@ -24,6 +24,7 @@ declare namespace HtmlValidator { ignore?: string | string[]; isLocal?: boolean; isFragment?: boolean; + headers?: Record; } interface OptionsForHtmlFileAsValidationTarget extends BasicOptions {