Skip to content

Commit 427eac8

Browse files
committed
Use correct client types
1 parent 6310102 commit 427eac8

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

content/en/docs/apidocs-mxsdk/apidocs/frontend/pluggable-widgets/pluggable-widgets-client-apis/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,12 @@ When the action property [defines action variables](/apidocs-mxsdk/apidocs/plugg
8686

8787
```ts
8888
interface MapWidgetProps {
89-
onClick: ActionValue<{ lat: Option<number>, long: Option<number>, label: Option<string> }>
89+
onClick: ActionValue<{ lat: Option<Big>, long: Option<Big>, label: Option<string> }>
9090
}
9191

9292
onClick.execute({
93-
lat: 51.907,
94-
long: 4.488,
93+
lat: new Big(51.907),
94+
long: new Big(4.488),
9595
label: undefined
9696
});
9797
```

content/en/docs/apidocs-mxsdk/apidocs/frontend/pluggable-widgets/pluggable-widgets-property-types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -499,8 +499,8 @@ When a `dataSource` attribute is specified and configured by the user, it is pas
499499
| Action Variable Type | Client Type |
500500
| -------------------- | --------- |
501501
| `String` | `string` |
502-
| `Integer` | `number` |
503-
| `Decimal` | `number` |
502+
| `Integer` | `Big` |
503+
| `Decimal` | `Big` |
504504
| `DateTime` | `Date` |
505505
| `Boolean` | `boolean` |
506506

0 commit comments

Comments
 (0)