From 811485b43fbfe72c1d9ee82fbd51358d75501531 Mon Sep 17 00:00:00 2001 From: Harlan Wilton Date: Sun, 4 Dec 2022 14:51:38 +1100 Subject: [PATCH] fix(meta): allow string http-equiv key --- packages/schema/src/meta.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/schema/src/meta.ts b/packages/schema/src/meta.ts index 8178095..6503e2e 100644 --- a/packages/schema/src/meta.ts +++ b/packages/schema/src/meta.ts @@ -109,7 +109,8 @@ export interface Meta { 'default-style' | 'x-ua-compatible' | 'refresh' | - 'accept-ch' + 'accept-ch' | + (string & Record) /** * The name and content attributes can be used together to provide document metadata in terms of name-value pairs, * with the name attribute giving the metadata name, and the content attribute giving the value.