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

yaschema

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yaschema - npm Package Compare versions

Comparing version 1.0.0-alpha.3 to 1.0.0-alpha.4

5

lib/types/deserializer.d.ts

@@ -1,2 +0,1 @@

import type { JsonValue } from './json-value';
import type { TransformationOptions } from './transformation-options';

@@ -13,5 +12,5 @@ import { ValidationOptions } from './validation-options';

/** Synchronously deserializes the specified value from JSON */
export declare type Deserializer<T> = (value: JsonValue, options?: TransformationOptions & ValidationOptions) => DeserializationResult<T>;
export declare type Deserializer<T> = (value: any, options?: TransformationOptions & ValidationOptions) => DeserializationResult<T>;
/** Asynchronously deserializes the specified value from JSON */
export declare type AsyncDeserializer<T> = (value: JsonValue, options?: TransformationOptions & ValidationOptions) => Promise<DeserializationResult<T>>;
export declare type AsyncDeserializer<T> = (value: any, options?: TransformationOptions & ValidationOptions) => Promise<DeserializationResult<T>>;
//# sourceMappingURL=deserializer.d.ts.map

2

package.json
{
"name": "yaschema",
"version": "1.0.0-alpha.3",
"version": "1.0.0-alpha.4",
"description": "Yet another schema",

@@ -5,0 +5,0 @@ "keywords": [

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