Remove ClientCsrQuery

Summary: Already have SecureClientQuery. No need to have this as a type as it's not used or needed anywhere.

Reviewed By: antonk52

Differential Revision: D47210345

fbshipit-source-id: d9f3026a0e2a0b5dd2e87f16dba34a388dacd75f
This commit is contained in:
Lorenzo Blasa
2023-07-04 09:01:26 -07:00
committed by Facebook GitHub Bot
parent 4a0ad8c1c3
commit e052c27f27
2 changed files with 5 additions and 12 deletions

View File

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