Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@swan-io/boxed

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@swan-io/boxed - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

dist/Dict.d.ts
import { LooseRecord } from "./types";
export declare const entries: <T extends LooseRecord<unknown>>(value: T) => { [K in keyof T]: [K, T[K]]; }[keyof T][];
export declare const entries: <T extends LooseRecord<unknown>>(value: T) => { [K in keyof T]-?: [K, T[K]]; }[keyof T][];
export declare const keys: <T extends LooseRecord<unknown>>(value: T) => (keyof T)[];
export declare const values: <T extends LooseRecord<unknown>>(value: T) => T[keyof T][];
export type LooseRecord<T> = Record<PropertyKey, T>;
export type Concrete<T> = {
[K in keyof T]-?: T[K];
};
export type Remap<T> = {
[K in keyof T]: T[K];
};

@@ -0,1 +1,7 @@

# 1.0.1
Changes:
- Fix `Dict.entries` type (142b7c7)
# 1.0.0

@@ -2,0 +8,0 @@

{
"name": "@swan-io/boxed",
"version": "1.0.0",
"version": "1.0.1",
"license": "MIT",

@@ -5,0 +5,0 @@ "description": "Utility types for functional TypeScript",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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