@weclapp/sdk 2.0.0-dev.4 → 2.0.0-dev.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -238,7 +238,7 @@ const createRawType = (value) => ({
|
|
|
238
238
|
});
|
|
239
239
|
const createArrayType = (value) => ({
|
|
240
240
|
type: 'array',
|
|
241
|
-
toString: () =>
|
|
241
|
+
toString: () => `(${value.toString()})[]`
|
|
242
242
|
});
|
|
243
243
|
const createTupleType = (value) => ({
|
|
244
244
|
type: 'tuple',
|