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

@types/webidl2

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/webidl2 - npm Package Compare versions

Comparing version 23.13.3 to 23.13.4

32

webidl2/index.d.ts

@@ -330,4 +330,4 @@ // Type definitions for webidl2 23.13

export interface DeclarationMemberType extends AbstractBase {
type: "iterable" | "maplike" | "setlike";
interface AbstractDeclarationMemberType extends AbstractBase {
type: DeclarationMemberType["type"];
/** An array with one or more IDL Types representing the declared type arguments. */

@@ -344,2 +344,30 @@ idlType: IDLTypeDescription[];

export type DeclarationMemberType =
| IterableDeclarationMemberType
| MaplikeDeclarationMemberType
| SetlikeDeclarationMemberType;
export interface IterableDeclarationMemberType extends AbstractDeclarationMemberType {
type: "iterable";
idlType: [IDLTypeDescription] | [IDLTypeDescription, IDLTypeDescription];
async: boolean;
readonly: false;
}
interface AbstractCollectionLikeMemberType extends AbstractDeclarationMemberType {
async: false;
readonly: boolean;
arguments: [];
}
export interface MaplikeDeclarationMemberType extends AbstractCollectionLikeMemberType {
type: "maplike";
idlType: [IDLTypeDescription, IDLTypeDescription];
}
export interface SetlikeDeclarationMemberType extends AbstractCollectionLikeMemberType {
type: "setlike";
idlType: [IDLTypeDescription];
}
export interface Argument extends AbstractBase {

@@ -346,0 +374,0 @@ type: "argument";

4

webidl2/package.json
{
"name": "@types/webidl2",
"version": "23.13.3",
"version": "23.13.4",
"description": "TypeScript definitions for webidl2",

@@ -27,4 +27,4 @@ "license": "MIT",

"dependencies": {},
"typesPublisherContentHash": "be449a8eb869cb0e2c25e4d0285e40303752eb65b09a526a15711867413ca6cb",
"typesPublisherContentHash": "031ba72557c102eb96c5e899d30eada14c0f5946062eba9befd4a9f638db67c8",
"typeScriptVersion": "3.1"
}

@@ -11,3 +11,3 @@ # Installation

### Additional Details
* Last updated: Thu, 10 Sep 2020 18:47:50 GMT
* Last updated: Sat, 12 Sep 2020 00:12:33 GMT
* Dependencies: none

@@ -14,0 +14,0 @@ * Global values: `WebIDL2`

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