Rename ClientDevice to DummyDevice

Summary: Rename ClientDevice to DummyDevice. It is being currently used in the case when we do cert exchange through WWW/Distillery. In this mode we are not able to figure out the exact device id(instead we create a fake one) and thus we would not like to use Android or IOSDevice for such cases.

Reviewed By: mweststrate

Differential Revision: D26944415

fbshipit-source-id: f9f76e8997cf5402ba5627ae1959f5a11e078bb1
This commit is contained in:
Pritesh Nandgaonkar
2021-03-10 06:32:18 -08:00
committed by Facebook GitHub Bot
parent d12501677d
commit 60994bd41f
5 changed files with 26 additions and 23 deletions

View File

@@ -40,7 +40,7 @@ export interface SupportedDevice {
export type OS = 'iOS' | 'Android' | 'Metro';
export type DeviceType = 'emulator' | 'physical';
export type DeviceType = 'emulator' | 'physical' | 'dummy';
export type PluginType = 'client' | 'device';