From a2fa5a2ded1071e9fb9c32fe2726236bcb2914c2 Mon Sep 17 00:00:00 2001 From: Lennart Date: Wed, 10 Aug 2022 14:20:50 +0200 Subject: [PATCH] chore(gatsby): Make `plugins` in `PluginOptions` type optional (#36351) Update index.d.ts --- packages/gatsby/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gatsby/index.d.ts b/packages/gatsby/index.d.ts index 5b3fb4ea9c6da..29e6e7cc92047 100644 --- a/packages/gatsby/index.d.ts +++ b/packages/gatsby/index.d.ts @@ -824,7 +824,7 @@ export interface GatsbySSR< } export interface PluginOptions { - plugins: unknown[] + plugins?: unknown[] [key: string]: unknown }