From 6127b4298446d3972d9e15359ac909ee2a2356d8 Mon Sep 17 00:00:00 2001 From: Oliver Joseph Ash Date: Thu, 6 Oct 2022 11:01:51 +0100 Subject: [PATCH] `ProviderProps` type: correct type of `context` property --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 0dd7c4f9..bc33d589 100644 --- a/index.d.ts +++ b/index.d.ts @@ -79,7 +79,7 @@ declare module 'react-helmet-async' { } interface ProviderProps { - context?: {}; + context?: Partial; } export class HelmetData {