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

@xylabs/typeof

Package Overview
Dependencies
Maintainers
0
Versions
198
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@xylabs/typeof - npm Package Compare versions

Comparing version

to
4.6.0

dist/types/ifDefined.d.ts

10

package.json
{
"name": "@xylabs/typeof",
"version": "4.5.10",
"version": "4.6.0",
"description": "Base functionality used throughout XY Labs TypeScript/JavaScript libraries",

@@ -31,3 +31,3 @@ "keywords": [

".": {
"types": "./dist/neutral/index.d.ts",
"types": "./dist/types/index.d.ts",
"default": "./dist/neutral/index.mjs"

@@ -38,6 +38,6 @@ },

"module": "dist/neutral/index.mjs",
"types": "dist/neutral/index.d.ts",
"types": "dist/types/index.d.ts",
"devDependencies": {
"@xylabs/ts-scripts-yarn3": "^5.0.39",
"@xylabs/tsconfig": "^5.0.39",
"@xylabs/ts-scripts-yarn3": "^6.0.5",
"@xylabs/tsconfig": "^6.0.5",
"typescript": "^5.8.2"

@@ -44,0 +44,0 @@ },

@@ -1,3 +0,3 @@

export type FieldType = 'string' | 'number' | 'object' | 'symbol' | 'symbol' | 'undefined' | 'null' | 'array' | 'function'
export type FieldType = 'string' | 'number' | 'object' | 'symbol' | 'undefined' | 'null' | 'array' | 'function'
export type ObjectTypeShape = Record<string | number | symbol, FieldType>