revert: "fix(core/platform): fixed types for sdkVersion and osVersion" (#10270)

Revert "fix(core): sdkVersion and osVersion type adjustments (#10269)"

This reverts commit f8edee43a0b28f523d510c6dd7d54015a0bc7e10.
This commit is contained in:
Nathan Walker
2023-04-17 09:42:15 -07:00
committed by GitHub
parent f4b2722bf4
commit 71c42f3a19

View File

@ -46,15 +46,15 @@ export interface IDevice {
/**
* Gets the OS version.
* For example: 12(android), 8.1(ios)
* For example: 4.4.4(android), 8.1(ios)
*/
osVersion: number | string;
osVersion: string;
/**
* Gets the SDK version.
* For example: 31(android), 8.1(ios).
* For example: 19(android), 8.1(ios).
*/
sdkVersion: number | string;
sdkVersion: string;
/**
* Gets the type of the current device.