Deprecate isLoggedIn request

Summary: It no longer makes sense since we are going to export "isLoggedIn" atom that always stays up-to-date in subsequent diffs

Reviewed By: LukeDefeo

Differential Revision: D44631234

fbshipit-source-id: 3e3b29b77d250eef430e81eef80098afe38a1538
This commit is contained in:
Andrey Goncharov
2023-04-04 05:26:31 -07:00
committed by Facebook GitHub Bot
parent b0a8dbca01
commit 7edaf24d5c

View File

@@ -209,6 +209,9 @@ export interface FlipperLib {
interface InternAPI {
graphGet: FlipperServerCommands['intern-graph-get'];
graphPost: FlipperServerCommands['intern-graph-post'];
/**
* @deprecated
*/
isLoggedIn: FlipperServerCommands['is-logged-in'];
}