@mirta/globals 0.0.4 → 0.0.6

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mirta/globals",
3
3
  "description": "Complete set of types for wb-rule development in TypeScript",
4
- "version": "0.0.4",
4
+ "version": "0.0.6",
5
5
  "license": "Unlicense",
6
6
  "keywords": [
7
7
  "mirta",
@@ -233,7 +233,7 @@ declare namespace WbRules {
233
233
 
234
234
  type MaybeValueEnum<TControl>
235
235
  = TControl extends 'value'
236
- ? { enum?: Record<number, TitleLocalized> }
236
+ ? { units?: string, enum?: Record<number, TitleLocalized> }
237
237
  : never
238
238
 
239
239
  type MaybeTextEnum<TControl>