SecureClientQuery moved to flipper-common

Summary: It should've been there with ClientQuery.

Reviewed By: antonk52

Differential Revision: D47210314

fbshipit-source-id: 869496918648f20b616c1a612296fff55597af77
This commit is contained in:
Lorenzo Blasa
2023-07-04 09:01:26 -07:00
committed by Facebook GitHub Bot
parent f63e5d440a
commit 4a0ad8c1c3
9 changed files with 18 additions and 31 deletions

View File

@@ -92,6 +92,13 @@ export type ClientQuery = {
rsocket?: boolean;
};
export type ClientCsrQuery = {
csr?: string | undefined;
csr_path?: string | undefined;
};
export type SecureClientQuery = ClientQuery & ClientCsrQuery;
export type ClientDescription = {
readonly id: string;
readonly query: ClientQuery;