New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@types/interpret

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/interpret - npm Package Compare versions

Comparing version
1.1.1
to
1.1.2
+0
-5
interpret/index.d.ts

@@ -1,6 +0,1 @@

// Type definitions for interpret 1.1
// Project: https://github.com/gulpjs/interpret
// Definitions by: BendingBender <https://github.com/BendingBender>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />

@@ -7,0 +2,0 @@

+1
-1
MIT License
Copyright (c) Microsoft Corporation. All rights reserved.
Copyright (c) Microsoft Corporation.

@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy

{
"name": "@types/interpret",
"version": "1.1.1",
"version": "1.1.2",
"description": "TypeScript definitions for interpret",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/interpret",
"license": "MIT",

@@ -9,11 +10,12 @@ "contributors": [

"name": "BendingBender",
"url": "https://github.com/BendingBender",
"githubUsername": "BendingBender"
"githubUsername": "BendingBender",
"url": "https://github.com/BendingBender"
}
],
"main": "",
"types": "index",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git"
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"directory": "types/interpret"
},

@@ -24,4 +26,4 @@ "scripts": {},

},
"typesPublisherContentHash": "73165875783dc692f560fa2a3a8fa280bcf842a41a81d3419808bb4fe0cb85c0",
"typeScriptVersion": "2.0"
"typesPublisherContentHash": "d4f70296bc30529bc73c90b2174b654647c7952301a81bd495738b2c64ad3993",
"typeScriptVersion": "4.5"
}

@@ -5,13 +5,37 @@ # Installation

# Summary
This package contains type definitions for interpret ( https://github.com/gulpjs/interpret ).
This package contains type definitions for interpret (https://github.com/gulpjs/interpret).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/interpret
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/interpret.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/interpret/index.d.ts)
````ts
/// <reference types="node" />
Additional Details
* Last updated: Wed, 13 Feb 2019 18:42:14 GMT
* Dependencies: @types/node
* Global values: none
export interface Hook {
(m: { extensions: string } | NodeModule): any;
install(m?: { extension: string; [key: string]: any }): void;
}
export type RegisterFn = (hook: Hook) => void;
export interface ExtensionDescriptor {
module: string;
register: RegisterFn;
}
export type Extension = string | ExtensionDescriptor | Array<string | ExtensionDescriptor>;
export interface Extensions {
[extension: string]: Extension | null;
}
export const extensions: Extensions;
export const jsVariants: Extensions;
````
### Additional Details
* Last updated: Wed, 18 Oct 2023 01:17:35 GMT
* Dependencies: [@types/node](https://npmjs.com/package/@types/node)
# Credits
These definitions were written by BendingBender <https://github.com/BendingBender>.
These definitions were written by [BendingBender](https://github.com/BendingBender).