UNPKG

detox

Version:

E2E tests and automation for mobile

13 lines (10 loc) 312 B
/* eslint-disable import/no-unresolved,node/no-missing-import,node/no-unsupported-features/es-syntax */ /** * A serializable object that represents a device. */ export interface DeviceCookie { /** The device's unique identifier. */ id: string; /** The display name of the device. */ name?: string; }