New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@mirohq/design-system-types

Package Overview
Dependencies
Maintainers
2
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mirohq/design-system-types - npm Package Compare versions

Comparing version 0.4.1 to 0.5.0

6

CHANGELOG.md
# @mirohq-internal/design-system-types
## 0.5.0
### Minor Changes
- [#170](https://github.com/miroapp-dev/design-system/pull/170) [`8c6c5c23`](https://github.com/miroapp-dev/design-system/commit/8c6c5c23e7f57617e610eeaa77d708cb8c029a5e) Thanks [@skarensmoll](https://github.com/skarensmoll)! - Included ExtractValidKeys type
## 0.4.1

@@ -4,0 +10,0 @@

2

package.json
{
"name": "@mirohq/design-system-types",
"version": "0.4.1",
"version": "0.5.0",
"description": "",

@@ -5,0 +5,0 @@ "author": "Miro",

@@ -6,1 +6,8 @@ export type Nullable<T> = T | null | undefined

export type Booleanish = boolean | `${boolean}`
/**
* Extracts valid key properties from object.
*/
export type ExtractValidKeys<T> = T extends string | number | boolean | symbol
? T
: never
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc