You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@types/memdown

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/memdown - npm Package Compare versions

Comparing version
3.0.0
to
3.0.1
+2
-2
memdown/index.d.ts

@@ -13,5 +13,5 @@ // Type definitions for memdown 3.0

export interface MemDownConstructor {
// tslint:disable-next-line no-unnecessary-generics
// eslint-disable-next-line no-unnecessary-generics
new <K = any, V = any>(): MemDown<K, V>;
// tslint:disable-next-line no-unnecessary-generics
// eslint-disable-next-line no-unnecessary-generics
<K = any, V = any>(): MemDown<K, V>;

@@ -18,0 +18,0 @@ }

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/memdown",
"version": "3.0.0",
"version": "3.0.1",
"description": "TypeScript definitions for memdown",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/memdown",
"license": "MIT",

@@ -19,5 +20,7 @@ "contributors": [

"main": "",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git"
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"directory": "types/memdown"
},

@@ -28,4 +31,4 @@ "scripts": {},

},
"typesPublisherContentHash": "9e2e9f802c506a10393e1a8b539829549ed0b51a3ae85315cb88c42b40ded327",
"typeScriptVersion": "2.3"
"typesPublisherContentHash": "7768cfd36360a7c9948f6211bf06392e167229eec626abd4412d924fe4786671",
"typeScriptVersion": "4.2"
}

@@ -8,10 +8,34 @@ # Installation

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/memdown
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/memdown.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/memdown/index.d.ts)
````ts
// Type definitions for memdown 3.0
// Project: https://github.com/Level/memdown
// Definitions by: Meirion Hughes <https://github.com/MeirionHughes>
// Daniel Byrne <https://github.com/danwbyrne>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3
Additional Details
* Last updated: Fri, 14 Sep 2018 16:56:40 GMT
* Dependencies: abstract-leveldown
import { AbstractLevelDOWN } from 'abstract-leveldown';
export interface MemDown<K, V> extends AbstractLevelDOWN<K, V> {}
export interface MemDownConstructor {
// eslint-disable-next-line no-unnecessary-generics
new <K = any, V = any>(): MemDown<K, V>;
// eslint-disable-next-line no-unnecessary-generics
<K = any, V = any>(): MemDown<K, V>;
}
export const MemDown: MemDownConstructor;
export default MemDown;
````
### Additional Details
* Last updated: Fri, 30 Dec 2022 23:03:41 GMT
* Dependencies: [@types/abstract-leveldown](https://npmjs.com/package/@types/abstract-leveldown)
* Global values: none
# Credits
These definitions were written by Meirion Hughes <https://github.com/MeirionHughes>, Daniel Byrne <https://github.com/danwbyrne>.
These definitions were written by [Meirion Hughes](https://github.com/MeirionHughes), and [Daniel Byrne](https://github.com/danwbyrne).