From 5eecc0a900dda8de353e87cd3a88d4174d494a37 Mon Sep 17 00:00:00 2001 From: Brendan Kenny Date: Mon, 22 Mar 2021 15:24:08 -0500 Subject: [PATCH] misc: fix PhaseArtifact type to include Stacks (#12280) --- types/gatherer.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/types/gatherer.d.ts b/types/gatherer.d.ts index fe889235a075..79a62196f1b3 100644 --- a/types/gatherer.d.ts +++ b/types/gatherer.d.ts @@ -68,7 +68,8 @@ declare global { LH.Artifacts['devtoolsLogs'] | LH.Artifacts['traces'] | LH.Artifacts['WebAppManifest'] | - LH.Artifacts['InstallabilityErrors']; + LH.Artifacts['InstallabilityErrors'] | + LH.Artifacts['Stacks']; export type PhaseResultNonPromise = void|PhaseArtifact export type PhaseResult = PhaseResultNonPromise | Promise