From 059615f336e55e63b4155ec06230368d04bc305f Mon Sep 17 00:00:00 2001 From: Edmond Chui Date: Wed, 20 Mar 2024 05:54:12 -0700 Subject: [PATCH] fix Page visibility API in launched CDT (#43560) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/43560 Changelog: [internal] Reviewed By: huntie Differential Revision: D55047534 fbshipit-source-id: e8e17bb1ca7282e0c29e968b6cbd5b4ec147d946 --- flow-typed/npm/chrome-launcher_v0.15.x.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/flow-typed/npm/chrome-launcher_v0.15.x.js b/flow-typed/npm/chrome-launcher_v0.15.x.js index 8f18f971b5cdf8..e520c5716c784c 100644 --- a/flow-typed/npm/chrome-launcher_v0.15.x.js +++ b/flow-typed/npm/chrome-launcher_v0.15.x.js @@ -44,6 +44,9 @@ declare module 'chrome-launcher' { declare class Launcher { getChromePath(): string; launch(options: Options): Promise; + Launcher: { + defaultFlags(): Array, + }; } declare module.exports: Launcher;