Hi,
A while ago I submitted a pr to fix types to use primitive types which is the expected types used and the pr was merged. However the samsung sdk branch is not using primitive types.
Example from main:
|
export type SuccessMessage = { |
|
success: boolean; |
|
error: string | null; |
|
}; |
Example from android-samsung-sdk:
|
export type SuccessMessage = { |
|
success: Boolean; |
|
error: String | null; |
|
}; |
This causes typescript issues for library users
Hi,
A while ago I submitted a pr to fix types to use primitive types which is the expected types used and the pr was merged. However the samsung sdk branch is not using primitive types.
Example from
main:terra-react/src/index.ts
Lines 28 to 31 in 8b5bd8e
Example from
android-samsung-sdk:terra-react/src/index.ts
Lines 25 to 28 in 7d2ef82
This causes typescript issues for library users