@mirohq/design-system-types
Advanced tools
Comparing version 0.2.0 to 0.3.0
# @mirohq-internal/design-system-types | ||
## 0.3.0 | ||
### Minor Changes | ||
- d218f7f3: Added Numeric type | ||
```ts | ||
const a: Numeric = 1 // ok | ||
const b: Numeric = '1' // ok | ||
const c: Numeric = '1px' // fail | ||
``` | ||
## 0.2.0 | ||
@@ -4,0 +16,0 @@ |
{ | ||
"name": "@mirohq/design-system-types", | ||
"version": "0.2.0", | ||
"version": "0.3.0", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "author": "Miro", |
export type Nullable<T> = T | null | undefined | ||
export type Numeric = number | `${number}` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2294
45