Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(core): sdkVersion and osVersion type adjustments #10271

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/core/platform/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ export interface IDevice {

/**
* Gets the OS version.
* For example: 4.4.4(android), 8.1(ios)
* For example: 12(android), 8.1(ios)
*/
osVersion: string;
osVersion: number | string;

/**
* Gets the SDK version.
* For example: 19(android), 8.1(ios).
* For example: 31(android), 8.1(ios).
*/
sdkVersion: string;
sdkVersion: number | string;

/**
* Gets the type of the current device.
Expand Down