From 71c42f3a194ecda5130e74f19f9494afc66953d8 Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Mon, 17 Apr 2023 09:42:15 -0700 Subject: [PATCH] revert: "fix(core/platform): fixed types for sdkVersion and osVersion" (#10270) Revert "fix(core): sdkVersion and osVersion type adjustments (#10269)" This reverts commit f8edee43a0b28f523d510c6dd7d54015a0bc7e10. --- packages/core/platform/index.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/core/platform/index.d.ts b/packages/core/platform/index.d.ts index 1221baa10..ceac382ce 100644 --- a/packages/core/platform/index.d.ts +++ b/packages/core/platform/index.d.ts @@ -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.